Last active
December 2, 2022 04:06
-
-
Save flameoftheforest/e14571d33196173253344119f7d21f91 to your computer and use it in GitHub Desktop.
save_bars.script.01.mq4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//+------------------------------------------------------------------+ | |
//| 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