- Search Crypto Craft
- 920 Results (52 Threads, 868 Replies)
-
Help me with MA coding
Started Feb 2, 2009|Commercial Content|1 reply
Hi guys...... Im coding a part of my EA wich will trail my stoploss accordingly to the price ...
-
FOREXflash replied Feb 2, 2009If you set the display alert to true, every time when divergence occurs, you will have a popup message with the type of divergence: //---- if(displayAlert == true) DisplayAlert("Classical bullish divergence on: ", DisplayAlert("Reverse bullish ...
CCI Divergence 5mn
-
FOREXflash replied Feb 1, 2009You can change all the settings, including colors!!!
CCI Divergence 5mn
-
FOREXflash replied Feb 1, 2009LOL, thanks...but anyone with some coding skills could done this! Respect
Semi automatic EA (Driven Version)
-
FOREXflash replied Feb 1, 2009If you want to use ea on few pairs, every ea NEED to have a different MagicNumber!!!! Also if you want to make ea trade only one direction, you can make it by changing the variable for that!
Semi automatic EA (Driven Version)
-
FOREXflash replied Feb 1, 2009Chart patterns occur in various TFs. You may find a head and shoulders pattern formed over several hours during a day, or over several months. Patterns are formed by SR levels and by trendlines. We concentrate on the patterns formed by support and ...
Admit it - your profits are based on luck
-
FOREXflash replied Feb 1, 2009Here it is.....added a magicnumber and manual direction. int Direction= 1; //1=long, 11=avoid long, 2=short, 22=avoid short
Semi automatic EA (Driven Version)
-
FOREXflash replied Feb 1, 2009Dont know if you guys know this but EA has 5 unused variables in it: Close these trades Close Lossing trades iFX analyser Goal Check Get Slipagge Also there is a variable that isnt external... int Direction; //1=long, 11=avoid long, 2=short, ...
Semi automatic EA (Driven Version)
-
FOREXflash replied Feb 1, 2009EA looks at the used timeframe(5min).... just edit the first variable I added in the ea: extern int MainTrendPeriod = 200; (this is exponential ma, with close price) Just edit this to the period you want to use for the trend detection!!! but if you ...
Semi automatic EA (Driven Version)
-
FOREXflash replied Jan 31, 2009Ea works exactly like original, but the only difference is that it will not buy if price is below ma, or sell if price is above ma!!!
Semi automatic EA (Driven Version)
-
FOREXflash replied Jan 31, 2009I coded a version with auto trend from EMA, so you dont need to keep a eye on daily chart for the trend......ea will not trade buy if price is below ema, and will not sell if price is above ema!!! You just need to input desired ema period in the ...
Semi automatic EA (Driven Version)
-
FOREXflash replied Jan 31, 2009Its alive, its alive,aliveee...... Thanks I will post full version in a few days, so check it out sometime! THANKS!!!
Help needed with custom indicator(how to call it from the ea)
-
FOREXflash replied Jan 31, 2009Thanks man, the problem with closing is that ea dont have a TP..... it close a position if open1 is bigger than last open etc.... Big THANKS Respect
Help needed with custom indicator(how to call it from the ea)
-
FOREXflash replied Jan 31, 2009Yes I removed that 2 string\comment functions from the indi code, so the icustom function is coded ok. Any thoughts?
Help needed with custom indicator(how to call it from the ea)
-
FOREXflash replied Jan 30, 2009I JUST CANT WORK THIS OUT! I think that there is a problem from taking correct signal from indicator. EA need to buy or sell exactly on the buy or sell arrow from the indicator, and then wait until other signal comes along. This code here have all ...
Help needed with custom indicator(how to call it from the ea)