- Search Forex Factory
- 217 Results (6 Threads , 211 Replies )
- Zeuzere replied Feb 15, 2007
SetIndexStyle() is limited to 1to5(See helpfile), Suggestion: Maybe you could draw your arrow with line instead. You use 7 line and you use the width you like for the line... :: Custom made arrow ::
How to draw a BIG arrow on the chart?
- Zeuzere replied Feb 15, 2007
Sometime, demo account do not behave correctly(Bad tick,etc...) Since is for people that dont pay for the service, maybe some broker do not put effort to be as accurate as the real trading server... Thats why is preferable to do demo to get use to ...
MT4 Account history question
- Zeuzere replied Feb 15, 2007
As far as i know, all of your order must be there, if its a demo account, maybe they have problem with there demo server. But its bizarre... change server(broker), you will see.
MT4 Account history question
- Zeuzere replied Feb 12, 2007
investor_me, You made a error in your code: iMA(NULL,0,MACD_level/10,0,MODE_EMA,Close[0],0)-iMA(NULL,0,MACD_level,0,MODE_EMA,Close[0],0); The Close[] is not good, its not the price close you put there but one of the 7 Price constants ranging from 0 ...
Simple MACD system based on 2 channels
- Zeuzere replied Jan 25, 2007
I totally agree, and on my first post, did not want to give info, but wanted to make things clear... Many people, make false affirmation(With good attention most of the time) or do not explain correctly. Sorry, if it was out of scope.
Beginner EA questions?
- Zeuzere replied Jan 24, 2007
Updated, - now you have the option to reverse the td (So you will have a end to your alert: The end of the TD line). - You can now change the td name or use the one by default next update: be able to use the horizontal line instead of td...
Indicator: Mt4 Alerts, replacement
- Zeuzere replied Jan 24, 2007
Alerts Indicator — I did the indicator, use the indicator with the script. Its use the same way as describe on the last pos except the EA is replace by the indicator... I did the EA at first because in the near future i will add the same ...
Indicator: Mt4 Alerts, replacement
- Indicator: Mt4 Alerts, replacementStarted Jan 23, 2007|Platform Tech|2 replies
I do not like the way mt4 alerts are made.... I like the way it works, but not the way you put ...
- Zeuzere replied Jan 23, 2007
Please anyone, when you say something to help people on FF, make sure you are right, or at least think you are right... Because when someone ask a question, its because they dont know the answer and they want to have it... People rely on answer made ...
The trend is your friend: if you dont miss the boat
- Zeuzere replied Jan 23, 2007
kmrunner, kmrunner, kmrunner — Never saw somebody like this... this guy is so... If your are not able to take critism without crying like a baby do not post... Read carefully please next time kmrunner... I'm glad you put me in your ignore ...
The trend is your friend: if you dont miss the boat
- Zeuzere replied Jan 23, 2007
locutus(Or merlin), if you report my last post(removed) as bad or kmrunner post as bad, Thanks....
Beginner EA questions?
- Zeuzere replied Jan 22, 2007
Wrong, you can use it, but it will be show as normal text... Quote from help file : " In further development of MQL4, some functions were renamed and moved from one group to another in order to systematize them better. The old function names are not ...
Beginner EA questions?
- Zeuzere replied Jan 18, 2007
Maybe, but he dont like it... IBFX use autochartist for those that dont know...
Chart Pattern Alert System?
- Zeuzere replied Jan 18, 2007
No on current bar. If you use 'Open Price Only', The new candle start at the open, but there is no close yet, so the current candle will have is close valid only when the new candle will appear. So if you use a trailing stop in you EA, it will ...
stop order for MT4, izzit Complete Bar Mode?
- Zeuzere replied Jan 16, 2007
It depend on how you write it... But yes it should work if you want it... Post you code will see.... But like Halcyon said "even handles multiple trades", it work for more than 1 order...
Trailing Stop - Best Practices
- Zeuzere replied Jan 16, 2007
I just noticed something: if the 'For' loop is just to ajust the SL then the if ( TrailingStop>0)should be place before the for if ( TrailingStop>0){ for(cnt=0;cnt<OrdersTotal();cnt++){ //.... } } this way you dont loop for nothing,, because the ...
Trailing Stop - Best Practices
- Zeuzere replied Jan 16, 2007
When you use OrderModify its not a bad idea to use a if(!OrderModify(...)){ Print("OrderModify returned the error of ",GetLastError()); } So if you have a Error in your OrderModify it will print the error... Its good to use this method in almost any ...
Trailing Stop - Best Practices
- Zeuzere replied Jan 16, 2007
2 things: 1- Ask+Point*TrailingStop in the OrderModify should be replace by newSL: Its already define and you use it to compare... But its good anyway.... 2- for(cnt=0;cnt<OrdersTotal();cnt++) <- Its good, if you dont delete(OrderDelete()).Otherwise ...
Trailing Stop - Best Practices