Forum

Problem In Ichimiko on long trade with Chikou filter.

I can not enter a long trade when using the chikou filter however short trades work fine. Can someone review my code and let me know if they can spot the bug? Appreciated #property link "https://www.NEW.com" #property version "1.00" #property strict #include <stderror.mqh> #include

Help Please to Display Arrows

//+------------------------------------------------------------------+ //| 5min_Indicator8.mq4 | //| Ferrari Green Associates LTD | //| https://www.Ferrari-Green.com |

Experts comments question.

2018.10.29 13:35:15.623 2905_2906.AUDJPY.25_10_2018.fv2 AUDJPY,H1: modify #49422381 buy 0.08 AUDJPY at 79.623 sl: 79.343 tp: 81.003 ok 2018.10.29 13:35:15.623 2905_2906.AUDJPY.25_10_2018.fv2 AUDJPY,H1: pPercent 1.5 why does the ea post this comment pPercent 1.5

HMA Type Conversion error for sqrt function

#property indicator_buffers 3 //---Indicator Colours #property indicator_color1 clrGreen //up arrow #property indicator_color2 clrRed //down arrow #property indicator_color3 clrRed //HMA //---Indicator Width #property indicator_width1 2 #property indicator_width2 2 #include <WinUser32.mqh> extern

Strategy Tester Date Parameter Issue.

Hi I am trying to run a strategy test over the last 3 years: Period 1 Hour (H1) 2018.02.27 14:00 - 2018.06.26 23:00 (2015.06.27 - 2018.06.27) Though as you can see the strategy tester is only giving me 4 month's results. The broker chart shows live data from furthest back 1st Dec 2006. I have tried

EA Shift to Pip Error ?

//+------------------------------------------------------------------+ //| Expert initialization function | //+------------------------------------------------------------------+ int OnInit () { magic=MagicNumberGenerator(); Print ( "MagicNumber is " ,magic);

Help Please ! Simple code for entering position based on pips above below entry.

I have developed a 1 hour ea that works fine, however I am looking to add to positions if they are trade positive by x pips over the 5 minute time frame. I am having trouble trying to work out a simple way of configuring this: double PriceAdjust=( iHigh ( NULL , PERIOD_M5 , 1 )+ iLow ( NULL

MTF fix using GlobalVariableGet

Hi, Can somebody please tell me if my coding solution is correct in solving a 4 H MTF call for an EA that runs on a 1 H chart, or at least clarify further the following: I run a separate EA to call the 4 H CCI to my 1 H based EA as shown below: double CCI_H4= 0 ; if ( iBars ( NULL , PERIOD_H4 )>

MTF Strategy Testing

Hi, Can someone please clarify the following. I have developed an EA that runs on the 1 Hour chart. The EA has 5 components that it analysis's on the hour before making a trade decision. 4 of these components are based on the 1 hour time frame and 1 of these components is based on the 4 hour time

Multi Time Frame EA/Signal Question - Help Please

Hi, I was chatting with a developer and he has told me that MT4 has problems using multiple time frames in an EA. I use the following to identify forward trend and then look for lower time frame entry points: int index = 0; StDev=iStdDev(NULL,PERIOD_D1,10,0,MODE_EMA,PRICE_MEDIAN,index+1);