- Search Crypto Craft
-
sangmane replied May 12, 201035 wins in a row
Dear Hayseed, can you send me your EA's source
?Gem of an EA needs a slight change
-
sangmane replied May 12, 2010yes it is. take a look at this thread url it will be better if you can upload the sample file (in CSV format) along with a pic that illustrate how the line should be drawn
Indicator to read from file
-
sangmane replied May 7, 2010Hi XmPh, Can you explain more detailed about the use of QQE in this strategy? Maybe one or two charts will be great

A Simple London Breakout
-
sangmane replied May 5, 2010the bottom indicator is likely a bollinger band applied to RSI
Help: which indicator?
-
sangmane replied May 5, 2010u can use iCustom(). you can find the description and example on MT4 lang reference
i like to add an indicator script into my own script. what would be the best idea?
-
sangmane replied May 5, 2010no, it is not. but it will make arrays easy to use without have to worry about array initialization. the main cause of the problem is this line: RSI_Val = iCustom(NULL, 0, "RSI",[B]0,0,bar); using "0" means RSI Period = 0. It's better to use ...
Help with indicator please
-
sangmane replied May 4, 2010int init() { IndicatorBuffers(3); SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,ExtMapBuffer1); SetIndexBuffer(1,RSI_Val); SetIndexBuffer(2,RSI_Val_SMA); return; }
Help with indicator please
-
sangmane replied May 4, 2010Take care Mer, God will always be with you. Immanuel..
A Simple London Breakout
-
sangmane replied May 4, 2010Hi Armagedoom, You can use basic ema calculation: //Convert Ema Period (21) to Smooth Factor : double SF = 2.0/(21+1); //Define initial ema value : double EmaSmaAngle = iCustom(NULL,0,"SMAAngle",0,21); //Iterate the next ema, start from the oldest ...
Cant take this any more!! (iMaOnArray)
-
sangmane replied May 2, 2010Hi tazmaan, I'm away from home, will recode that EA when I'm back

A Simple London Breakout
-
sangmane replied May 2, 2010with spread cost,with fixed 20 pip tp and sl and spread is 2 pip, regardless your position (short/long): - price has to move 22 pip in your direction to hit TP - price only need 18 pip movement against your direction to hit SL
misguided logic?
-
sangmane replied May 2, 2010I usually use the following trick: 1. Back up file named symbols.sel when spread is normal. At weekend, replace the current symbols.sel with the backup file 2. If I forgot to backup symbols.sel, I just rename the file to other name (like ...
MT4 backtest on weekend could be wrong idea
-
sangmane replied Apr 28, 2010double xyz(double array1[], double array2[], int noofbars)
Array as parameter, is it possible?
-
sangmane replied Apr 28, 2010NiceGuy, Seeing that you can't get that smiley face, there is a chance that you don't enable Expert Advisor. Pls check Tools-Options, activate "Expert Advisor" tab, tick the check box "Enable Expert Advisor (except for Custom ....)" .
Universal MA Cross EA by Firedave
-
sangmane replied Apr 28, 2010you could try the modified code below: #property indicator_separate_window #property indicator_buffers 3 #property indicator_color1 Blue #property indicator_color2 Lime #property indicator_color3 Red #property indicator_width1 2 #property ...
Help with this simple change..
-
sangmane replied Apr 28, 2010Hi, I just test the EA on GU. I use M1 and FastMAPeriod = 2, SlowMAPeriod = 3, all other settings are default. I intentionally use M1 and a short period to quickly get trade. And EA open it as per rules. As you can see on the screenshot, the broker ...
Universal MA Cross EA by Firedave
-
sangmane replied Apr 26, 2010If you can give me details about: 1. Your broker 2. See terminal expert tab, post the error message if any. 3. What about testing on strategy tester, does it work? See strategy tester's journal tab. post the error messages if any
Universal MA Cross EA by Firedave