Forum

Please Help on Fractals

Please I need your help in coding Fractals. I want the values of four consecutive Fractals: Last but one upper Fractal , Last but one lower Fractal, Last upper Fractal, Last lower Fractal. Thanks

EA to make one trade after indicator cross signal

Please help me with the code for my EA to make one trade per indicator cross signal and wait for another cross again to make another trade decision. Thanks

Please, how to open buystop and sellstop orders at the same time

Please, how can I open buystop and sellstop orders at the same time and one delete as the other triggered? Thanks

Please help on: OrderSend error 3

Please help on: OrderSend error 3 This is the code: //+------------------------------------------------------------------+ //| Ma13.mq4 | //| Copyright © 2005, MetaQuotes Software Corp. | //|

Help please!

Help please! I want to close a position after a certain bar if still in negative profit. Thanks

Help Please! on Candlestick coding.

Op = iOpen( NULL , 1440 , 1 ); Cl = iClose( NULL , 1440 , 1 ); Hg = iHigh( NULL , 1440 , 1 ); Lw = iLow( NULL , 1440 , 1 ); Bd = MathAbs (Op-Cl); Ush = Cl>=Op&&Hg-Cl&&Hg-Op; Lsh = Cl>=Op&&Op-Lw&&Cl-Lw; Ma= iMA ( NULL , 1440 , 8 , 0 , MODE_EMA , PRICE_CLOSE , 1 ); Please is anything

Please help needed on ea trading time

Somebody Please help, I don't want my ea to trade between 15.00 and 20.00 How should I code this and add it to my ea? Your help is highly needed. Thanks

Help Please!

Please I need help on this for my EA: double RSI_Prev = iRSI(NULL,0,6,PRICE_CLOSE,2); double RSI_Curr = iRSI(NULL,0,6,PRICE_CLOSE,1); double MA_RSI2 = iMAOnArray(RSI_Prev,0,6,MODE_LWMA,RSI_Prev,2); double MA_RSI1 = iMAOnArray(RSI_Curr,0,6,MODE_LWMA,RSI_Curr,1); the comments on tester says

EA working on 2 Timeframe at the same time

Please what should I do to make my EA work this manner; To open position on H1 chart base on the signal from indicator on H1 chart and close the opened position using the signal from indicator on M15 chart. Thanks

EA opening many positions

My EA is opening many positions on a single bar, please, what should I do to it so that it will open a position per bar and will not open another position until the existing one is closed