Dominik / Publications
Forum
Error problems with OrderSend function
Hello all, I am struggeling with an error I constantly get from the order execution . double BidPrice = NormalizeDouble(Bid, Digits); double SellingPrice = ( BidPrice-(TP/ 100 * 1.01 ) ); result = OrderSend ( Symbol (), OP_SELLSTOP, AdvancedMM()
Math calculation wrong
Hi, I am sitting here for hours now trying to fix this thing until it turned out that my calculator can easily get the wanted result, but it seems that MT4 cant. I should show the result -2.35671324 using this calculation: Print(((1/10)*23.56713241)*(-1)); but instead it is showing -0. Does
Backtests before 2010 useless?
Hi, I downloaded the tick data with the max settings in the options (999.. -> 257...), so there is a tick data back to 1970 in my MT4. I know that the spread and all these things can chane the results, but I heard someone said in a conference that the tick values of 2010 are the last one and that he
WebRequest import question
Hey, I'm using the Webrequest code from this thread https://forum.mql4.com/9083, so everything is working properly with one problem. Every single time the Webrequest process is started the message of MetaTrader4 comes up with the question if I really want to import wininet.dll (or something similar
Stochastic Question
Hey, I've a short question. How can I define the level of the Stochastic Oscillator (Standard is 80 as the highest and 20 as the lowest)? Usually I use this code: iStochastic(NULL, 0, 11, 3, 3, MODE_SMMA, 0, MODE_MAIN, 0); But I don't know how to change to 80/20 setting to my own. Cheers D