CSVPlugin::CSVPlugin() { }
Here is a simple example of an Amibroker data plugin source code that connects to a CSV file: amibroker data plugin source code
int CSVPlugin::GetPluginInfo(PluginInfo& info) { info.name = "CSV Plugin"; info.version = "1.0"; info.description = "Connects to a CSV file"; return 0; } CSVPlugin::CSVPlugin() { } Here is a simple example