a return to the fairy tale - page 2

 
atik:

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

 
IgorM:

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...

 
I tried to convert WOC in jforex, everything seems OK, but I can't fix the error that appears when OrderModify() is called, how does order modification happen in jforex?
 

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)

 
atik:

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

Yup, it's easier to create a TF for MT4 from tick data and test it in the tester
 
IgorM:
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)
 
IgorM:
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
 
atik:

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

atik:

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...
I have no problem, the problem is the deposit, they ask too much for a minimum deposit on Dukas, it's easier with MT-men in runet ;)
 
IgorM:


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...
 
nothing complicated, you can create a TF that will have bars every second - in fact, it's a ticking clock, the only problem is I don't know how to use volumes from Dukas - they give volumes for both asc and bid, very useful information, and it's hard to write it down in OHLC ;)
Reason: