gbpaud and gbpchf trades out with 22 pips profit.
Intraday only.
Correlation + Momentum Strategy? 6 replies
MT4 MTF Correlation table and Correlation oscillator indicators 155 replies
InsomiaFX Correlation Double Hedge EA 66 replies
Looking for EA for Correlation Strategy 6 replies
Hedge strategy (not a hedge fund) 13 replies
Dislikedeurnzd i do not trade. Spread is more. Any way, what i noticed today triplets signals rarely comes. Quad signals come often. Why not enter at 95 or 98 for quad ? And if quad trades go big DD, then martingale strategy can be utised by adding more trades at some DD and have common profit target ?Ignored
DislikedI'm using 15TF with the rest 80% difference stoc entry point. Any commments?Ignored
DislikedHi,
can you please send me the indicator list of above chart ?
thank you & regardsIgnored
Dislikedi spoke about my backtests i done with a .dll.
here i give the mt4 version
i think you will understand how it works. simply put in the first and second pair.
then what stochastic difference criteria for entry and exit.
UseTimelessGraph set to true and you will see the equity like in the stratgy tester window. if false then you could compare the signals with exact entry and exit when it happens. put stoch diff indi for comparison.
invertfirst and invertsecond is the same like in the stoch diff indi.
load as many history data you can. i tested...Ignored
DislikedHi Mediator,
many thanks for this very nice equity backtester, well done!
I spent a few hours playing with it, made some changes (couldn't resist...) and i think i found something really interesting "by accident" -- while changing the code, testing various inputs combinations started giving suspicious results (too good to be true)...
I now need to find out where the bug is, or if it is my history data that is playing with me... or if it is simply the reality!
More later, I must get some rest now...
Here is what i mean by...Ignored
DislikedThe person who changed my code did not get the array sizes correct. also they did not sort there currencies. Here it is sorted and corrected. Please use this indicator and this template.
I have no idea if the alerts work properly, because they have moved them to function calls and I did not follow the logic. So you will just have to test it.Ignored
Dislikedyes, this indi helps alot with testing. the good thing is, that you could backtest most every strategy with slightly changes in code.
but i'll be curios how you reached this results.
MediatorIgnored
DislikedOk, i'm up after a few hours of sleep...
Thread was quiet during the night...
Yes, very interesting method indeed.
I like the "TimelessGraph" mode.
Clever way of plotting an equity curve!
I hope to be able to sched some light on my suspicious results today...
I've been thinking about it all overnight...
I think it has to do with the iStochastic() integrated function, which for some reason would not give reliable results:
I added some debug code to log every simulated "trade" found by the backtest indicator, along with the relevant stoch...Ignored
bool run_once = true; Init() { the init stuff here.... } Start() { if(run_once) { my code that would normally be in the start function goes here... run_once = false; } else { the same exact code as above, but I do not use the index i and the for loop.... }
Dislikedgood morning squalou,
i think it has to do with this line:
if (UseTimelessGraph)...Ignored
DislikedYes, I had this problem even with other Multi-currency IStochatic() functions. What I did to solve this problem is this.
[php]
bool run_once = true;
Init()
{
the init stuff here....
}
Start()
{...Ignored
Dislikedthanks for that SMJ, that 's very interesting information...
I think i did something similar in my release, by waiting for each bar open, and i have even added a 5 more seconds delay.
I will try replacing the iStochstich() with a function that calculates it based on iHighest/iLowest() instead, and see if this makes any difference.
If not, then it means it is really the way mt4 reads the history data that is completely f***ed up !!!
SqIgnored
Dislikedthanks for that SMJ, that 's very interesting information...
I think i did something similar in my release, by waiting for each bar open, and i have even added a 5 more seconds delay.
I will try replacing the iStochstich() with a function that calculates it based on iHighest/iLowest() instead, and see if this makes any difference.
If not, then it means it is really the way mt4 reads the history data that is completely f***ed up !!!
SqIgnored