- Search Crypto Craft
-
sangmane replied May 27, 2010thanks ronald for your suggestion. after so many experiments, i find that trading the bounce on 50/61.8/78.6 retracement measured from zz leg is better than trading the breakout. (well, thats mine, others can be different) that's why i don't update ...
Zigzag EA
-
sangmane replied May 27, 2010You better make a new thread, and explain your programming problems. Dont post on this expired thread...
Zigzag EA
-
sangmane replied May 27, 2010Nightyhawk, I don't have the hard rules for divergence. Thats why I was asking. @baron: I can't see divergence on your chart. Am I missing something?
Need EA for Zerolag MACD + MAs System
-
sangmane replied May 27, 2010I have marked with bold font the change you need to make. But in my opinion, it's not a bug. It seems the coder do want the EA working like that. If you set FirstLong = True, EA assume the bias is bullish, and it put more weight to long position. If ...
Help w/ Bug on profitable EA
-
sangmane replied May 27, 2010trade4fun, as per your req. use my customized HMA below, call iCustom like this: double HMA = iCustom(NULL,0,"HMAColorLine",SlopePeriod,SlopeMethod,SlopePrice,2,shift); double HMA1 = ...
indicator madness. want to go from future to the past.
-
sangmane replied May 27, 2010And you are a fund manager..

Sq, I have an idea. Instead of double the lot after SL being hit, why not adding position with a small lot at each certain price interval (grid) when price went against our direction, and adjust TP accordingly. It ...A Simple London Breakout
-
sangmane replied May 27, 2010swing, you don't draw how the arrow should be. so i make my guess: up arrow: if sma 30 cross up sma 50 and both sma 30 and 50 above sma 100 dn arrow: if sma 30 cross dn sma 50 and both sma 30 and 50 below sma 100 pls check the indicator below.
30/50/100 sma crossover indicator.
-
sangmane replied May 27, 2010there are many EA here at FF that based on MA cross. to name a few: Generic MA Crossover Universal MA Cross
Only trade when cross
-
sangmane replied May 27, 2010Mer, If I can give an advice, don't put too much on Martingale to make the system profitable. If the system itself doesn't have what so called "edge", simply Martingaling them won't make any good. If we rely only on Martingaling to make profit, we ...
A Simple London Breakout
-
sangmane replied May 27, 2010the most tricky part is how to code divergence identification. divergence needs discretion, unlike human, computer doesn't have discretion. except you can give a set of hard rules about divergence
Need EA for Zerolag MACD + MAs System
-
sangmane replied May 27, 2010pls find the indy with alert attached below just to inform you that the indi is actually a "flexible" MACD with adjustable moving average type.
Need help of coding this indi to alert
-
sangmane replied May 27, 2010i've frequently seem the coding style using shift [i-1] like the above indicator: fasterEMAafter = iMA(NULL, 0, FasterEMA, 0, MODE_EMA, PRICE_CLOSE, i-1);when i = 0, this code trying to access the future value of ema. the easiest fix: change every ...
cannot use iCustom(), need help
-
sangmane replied May 26, 2010kraven, pls test indicator below
Programmers help need for OsMA indicator
-
sangmane replied May 26, 2010ups, kenny, we post almost in the same time. i delete mine. but after seeing your indi, i think it would not be bad to post my version as it uses a different style
Spread Tracking Indicator?
-
sangmane replied May 26, 2010int Count = 0; for(int i=OrdersTotal()-1; i>=0; i--) { OrderSelect(i,SELECT_BY_POS); if(OrderType()<=OP_SELL) Cnt++; } //now Count variable contains the number of open orders, excluding pending orders
Counting how many open trades there are...?
-
sangmane replied May 26, 2010the posted indicator is an ema cross indicator that show arrow when there is a cross between two ema's. it will assign a value to its buffer only when there is a cross. but most of the time, when the ema don't cross each other, indicator's buffer ...
cannot use iCustom(), need help
-
sangmane replied May 26, 2010Yes, the EA works! Umm.. well.. it works against me...

Is there a way to run EA with computer off?
-
sangmane replied May 25, 2010VPS is running — finally my vps at Central Network Services is running well. i have installed MT4 Alpari demo and currently forward testing my London BO EA. i even post this message using IE Browser at vps. it's exciting, like having a new toy ...
Is there a way to run EA with computer off?