I have been reading the code for the SVOS Expert Advisor and had a couple of questions.
This EA operates on a 24hr timeframe (PERIOD_D1). The code marked "Assess for Buy" and "Assess for Sell" is located after the test
if (Volume[0] > 1)
return (0);
So this means that a trade will be initiated once per day only. Is that correct? Isn't this a restriction? If you receive 10,000 ticks per day, you're only acting on the first one.
The EA is hard coded for EUR/JPY. Would this strategy work for other currency pairs, assuming you modified the appropriate parameters (ex stoploss etc). And what about other timeframes.
ElectricSavant mentioned that the last last six trades have been winners. Could you post the opening and closing times of these trades and the prices. And do you know if these were in a trending or ranging market (this is determined by the VHF indicator). Thanks.
Have you been trading this with real money or was it on a demo system?