Skip to content

Instantly share code, notes, and snippets.

@flameoftheforest
Last active December 2, 2022 04:06
Show Gist options
  • Save flameoftheforest/e14571d33196173253344119f7d21f91 to your computer and use it in GitHub Desktop.
Save flameoftheforest/e14571d33196173253344119f7d21f91 to your computer and use it in GitHub Desktop.
save_bars.script.01.mq4
//+------------------------------------------------------------------+
//| save_bars.script.mq4 |
//| Copyright 2022, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2022, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
int sample_size = 6; // NOTE: exporting 6 bars only.
string filename = "bars.csv"; // NOTE: we are passing this into the DLL
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
/// TODO
}
//+------------------------------------------------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment