- Search Energy EXCH
- 198 Results (10 Threads, 188 Replies)
-
lmyyyks replied May 10, 2010"Time" is a predefined array, you can't use it as your own set variable
Cant draw simple Vertical Line
-
lmyyyks replied May 10, 2010mq4 file can not be used in the metatrader4, you have to compile the mq4 file to ex4 file through the "compile" function in the metaeditor, you can do this by simply pressing F5 in metaeditor.
experts advisor file not in experts folder
-
lmyyyks replied May 10, 2010sorry, i've made a mistake, the EA mode is only available for the fast slow trix. you have to change the setting manually if you want the indicator to display the histos as input in the EA
THV MTF EA beta testing
-
lmyyyks replied May 10, 2010that means it's not working the "expert advisor" button on the tool bar should be displayed as a square in a red circle, click it and it's turn green, also the X will become a smilie also check the "expert advisor" tag in the "option" menu to see if ...
THV MTF EA beta testing
-
lmyyyks replied May 9, 2010Sorry for your situation. By the way, I wanted to open an IBFX account. Thanks mate!
Need help, all opinions matter
-
lmyyyks replied May 9, 2010you may try this if (Hour() = 4 && Minute() = Period()) double maval1 = iMA(... parameters ......,1) if (Hour() = 6 && Minute() = 15+Period()) double maval2 = iMA(... parameters ......,1) the use of period() depends on the timeframe you're using, ...
Mql4 Coding Help
-
lmyyyks replied May 9, 2010if this is the format you've copied from the script but not re-typed i would say you've missed a left parenthesis if (indicator[a] < indicator[a+1])OP = OP_SELL; if this is not the case, try removing "else", it won't affect the logic.
finnished my first indicator now want to add EA to it. a few questions.
-
lmyyyks replied May 9, 2010only 1 comment "unexpected token"? i had this error usually because i used arithmatic operators (e.g. "=") instead of assignment operators (e.g. "==") or i put the array together with the "[]" while calling a function. check your whole script to see ...
finnished my first indicator now want to add EA to it. a few questions.
-
lmyyyks replied May 8, 2010You can fix this by editing the indicator MTF Trix Histo: EA mode = true. The displayed value in the chart has no effect on the actual calculation of the EA. It is just for user's own reference.
THV MTF EA beta testing
-
lmyyyks replied May 8, 2010I don't like that one, anyway, i find this strategy i've developed isn't that good, the analytical method may not be the same but the entry positions are around the same as some other methods presented here. I'm now developing another strategy.
Trendfinder Tool
-
lmyyyks replied May 7, 2010you can only obtain a value, not to call it from your EA i've told you to use a variable to obtain certain value from the function double whatever_it_is = iCustom(parameters)
How to close a function within the EA
-
lmyyyks replied May 6, 2010got a programmer already? I'm no programmer, but I want to improve my programming skills and knowledge. So if you're still looking for anyone to make an EA for you, I'm willing to. I'm in Sydney.
I Finally have figured Forex out. Need help programming EA
-
lmyyyks replied May 6, 2010Thanks for your reply, hanover, but i think what i want to do cannot be done by mt4 because the way they set-up the function seems impossible to draw the eclipses i want. MQL5 is far more difficult than MQL4, too many new functions and syntax, I ...
draw circle?
-
lmyyyks replied May 6, 2010I guess this is an illusion created by the wrong setting. I wonder if you've set stoploss for your orders, (or your EA was unable to close the trades for some reasons) check the journal without stoploss, losing orders won't close and winning orders ...
SSS EA v1.0 - Auto Trader Bot
-
draw circle?
Started May 6, 2010|Platform Tech|9 replies
in mql4, elipse only takes 2 coordinates, and the edit screen of the eclipse shows two ...
-
lmyyyks replied May 5, 2010you should give a variable for that value double whatever_it_is = iCustom(NULL, 0, "MEGATREND PROBABILITY METER II",13,7,0);
Probability Trader EA help
-
lmyyyks replied May 5, 2010I'm not actually talking about the repaint problem, but the opening gap. what i'm suggesting is that the trix gives false signals no matter it repaints or not because a part of the price action is not known by the server but the trix still does the ...
THV MTF EA beta testing
-
lmyyyks replied May 5, 2010different brokers' server have different opening and closing time where prices will continue to change, there's a big gap for your monday open, but that is not necessarily apply to other brokers' mt4 platform.
THV MTF EA beta testing
-
lmyyyks replied May 4, 2010put this SetArrayAsSeries(RSI_Val_SMA, true); SetArrayAsSeries(RSI_Val, true); maybe the functions are spelt wrong or parameters count is wrong. I don't have the reference right now. But it's the way I dealt with it. DO REMEMBER to check the ...
Help with indicator please