- Search Crypto Craft
-
sangmane replied Dec 13, 2009Hi Maxwell, It seems both of us are wrong. How can we be a trader if we can't count our profit/loss correctly
Price on the chart (candle) is bid price. And 50pips system trade round number (x.xx50, x.x00), doesn't it? Suppose that price go ...50 pips candle system
-
sangmane replied Dec 13, 2009hi, before use martingale, run the standard ea and see how many consecutive losses we have. from my backtesting, there are around 8 - 9 losses in a row from 1-1-09 to 10-12-09. and with this figure, even if we don't limit martingale level, the first ...
50 pips candle system
-
sangmane replied Dec 10, 2009sorry, forgot to upload template file
Very Profitable System - Roi system
-
sangmane replied Dec 10, 2009i try to make the same screenshot, well, it seems only the MTF S/R that matched. Not sure about MTF MA setting and arrow alert.
Very Profitable System - Roi system
-
sangmane replied Dec 9, 2009if all you want is to convert 4 to 5 digits EA, RR's solution is the easiest one. Search your EA for "Point" and change it to "10*Point". for example: OrderSend(Symbol().....,Ask+TakeProfit*Point,...) change to ...
The Easiest way to convert EA from 4 to 5 decimals
-
sangmane replied Dec 3, 2009pls find the modified indy below. stephen
I code your Expert Advisors / Indicators
-
sangmane replied Dec 3, 2009ok, aug-nov looks good. what i asked is that is the buy/sell performed by this ea meets the rules.
50 pips candle system
-
sangmane replied Dec 3, 2009hi zebulon, i've made ea to backtest this 50 pips candle strategy. i can't get good result, maybe there is something wrong with the buy/sell logic that i use in this ea? stephen
50 pips candle system
-
sangmane replied Dec 2, 2009hi tutor, your EA contains many logic error. it doesn't have syntax error, thats why it passes when you compiled. one of them that i could spot is this: 1. you should use double instead of int 2. fastMA and slowMA should have different period(13 and ...
Guru EA Coders...Help me please...
-
sangmane replied Nov 30, 2009on init() section, change Pip = 10*Point to Pip = Point. I use Alpari, 3 digits for EUR/JPY. It seems your broker uses 2 digits for JPY currency. or modifiy it to: if(Digits==3 || Digits==5) Pip = 10*Point; else Pip = Point;
I code your Expert Advisors / Indicators
-
sangmane replied Nov 30, 2009hi everett, here is the TS EA. instead of modifying, i write all the code from scratch to make it looks simpler. previous EA contains too many commented line. i've modified the OsMA rules a litle bit different from the original one. let me know your ...
I code your Expert Advisors / Indicators
-
sangmane replied Nov 29, 2009hi everret, sorry, i forgot about trading time limit and magic number. before i make the code, pls clarify your trailing stop rules. the rules conflict with each other 1. first TP = 24 pips, then when price hit TP, price has been already 24 pips ...
I code your Expert Advisors / Indicators
-
sangmane replied Nov 28, 2009hi, i've made some correction. ..
Help: only one line appears instead of four
-
sangmane replied Nov 26, 20091. can you explain how it interferes? from your ea, i saw that you use magic number to decide whether to buy or sell, oopss, i mean to count the numbers of floating orders 2. no probs
P.S. i don't have enough EUR/JPY data. the treshold value for ...I code your Expert Advisors / Indicators
-
sangmane replied Nov 26, 2009Yes you are. pls note that what i mean by locked to +20pips is the difference between price and sl (1.4030-1.4010 = +20pips), not the profit.
I code your Expert Advisors / Indicators
-
sangmane replied Nov 25, 2009i don't think there exist a standard meaning of trailing stop and trailing step. but based on how your EA uses these two parameters, trailing stop is the allowable maximum distance between price and SL. and if price > SL + (trailing stop+trailing ...
I code your Expert Advisors / Indicators
-
sangmane replied Nov 25, 2009everret, pls find the attached EA, i've added code to move SL to BE and close half of order lots when price halfway to TP. you should adjust your TP and trailing parameter for this code to function properly. hope this help
I code your Expert Advisors / Indicators
-
sangmane replied Nov 25, 2009hi everett, why not post your ea here...
I code your Expert Advisors / Indicators
-
sangmane replied Nov 25, 2009from aiccia's post, it seems the EMA is attached to backtester's chart. and both backtester's chart and EA should have the same available bars. on my mt4, EA and indicator that were attached on backtester's charts have 1002 bars when they started.
Major problem with metatrader
-
sangmane replied Nov 23, 2009hi, why using StrToDouble? ////////////////////// extern bool Percent = true; extern double Risk = 2.0; bool SLAlerted=False; bool TPAlerted=False; int start() { //---- if (Percent == true) double stop =AccountBalance()*(-Risk)/100; double profit ...
Profit target and Stop loss alert