Search found 52 matches

Return

Re: Export .csv file after backtest.

by: ffsss
Hi ffsss, That EA code below does similar. To check csv after test, go to \tester\files folder. double count13 = 0; double count15 = 0; void OnTick() { if(Hour() == 13) count13 += 1; if(Hour() == 15) count15 += 1; } //+------------------------------------------------------------------+ //| | //+---...

Re: MT4 Indicator requests and ideas

by: mladen
mrtools, Even with external parameters, values not changing while ea running. Problem stays the same. Sincerely, Sergei enum enPrices { pr_close, // Close pr_open, // Open pr_high, // High pr_low, // Low pr_median, // Median pr_typical, // Typical pr_weighted, // Weighted pr_average, // Average (hi...