You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
pips in giforx... ( mercilessly ) but I can't raise the Speed more than 2 for some reason... ( no test )
I am already optimistic that you have moved to giforce ;)
i have just installed it, i don't know what to do with it, but i have ticks - i can already try to build a strategy for the piper
I am already optimistic that you have moved to giforce ;)
Can you share your code for giforce? I just installed it, I do not know what to do, but the ticks are there - you can already try to build a strategy for the pips
https://www.mql5.com/ru/forum/132028/page2
it is just as a template ( example code )
well a lot in common with mcl... Except some of the names are different...
there's no such thing... the stop is simply reassigned
if (order.getOrderCommand() == OrderCommand.BUY) {
if (bid() > openPriceBuy + TStop * point() && stop < bid() - TStop * point()) {
stop = bid() - TStop * point();
}
if(order.getStopLossPrice() < bid() - TStop * point() && bid() - openPriceBuy > TStop * point()) {
order.setStopLossPrice(bid() - TStop * point());
closePriceBuy = bid() - TStop * point();
}
}
else {
if (ask() < openPriceSell - point() * TStop && stop > ask() + point() * TStop) {
stop = ask() + TStop * point();
}
if(order.getStopLossPrice() > ask() + TStop * point() && openPriceSell - ask() > TStop * point()) {
order.setStopLossPrice(ask() + TStop * point());
closePriceSell = ask() + TStop * point();
}
And the converter is crooked there... I don't recommend converting. Many functions from µl just aren't there (e.g. market info...or modifications)
And the converter's a mess... I don't recommend converting. You have to write again... a lot of mcl functions just aren't there
Yeah, it's easier to create a TF for MT4 from tick data and test it in the tester
it would be nice to hack into mt4 and add a second timeframe to the tester...(since the authors and DTs are sabotaging it)
Yeah, it's easier to create a TF for MT4 from tick data and test it in the tester
mt4 is not an option for trading ... and the mcl functions that are absent in the dukk are just different ... just learn how to use them
I don't think it would be a good idea to hack mt4 and add a second timeframe to the tester...
don't need to break anything ))))
you can do as they say here: http://eareview.net/tick-data
Or, I think we can try it: read https://www.mql5.com/ru/articles/1368 and create tick TF based on export from jforex and use this TF to create a strategy
mt4 is not an option for trading... the mt4 function is not present in the dukk... it just needs a different way of doing it... i just need to learn it...
there is no need to break anything )))
you can do as they say here: http://eareview.net/tick-data
or, as I think, try to do: read https://www.mql5.com/ru/articles/1368 and create tick TFs based on jforex export and create a strategy on this TF
headache is...