Jump to content

fxbill

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by fxbill

  1. A MTF indicator based on three standard indicators: stochastics (Stochastic), RSI (Relative Strength Index) and CCI (commodity channel index). It displays the direction of the current trend for timeframes M5, M15, M30, H1, H4 and D1. When you watch this indicator, you have a clear picture of trends in all timeframes.

     

    Input parameters: Input parameters:

    PercentK (default = 8) - the period in the bars to calculate the% K line stochastics.

    PercentD (default = 3) - between the bars to calculate the% D line stochastics.

    Slowing (default = 3) - the value of the deceleration parameter stochastics.

    RSIP1 (default = 14) - during the first indicator of RSI (rapid).

    RSIP2 (default = 70) - during the second indicator RSI (slow).

    Other options - are the character codes to display the arrow direction of the trend.

     

     

    http://[email protected]/ZNDFWU06ZC 

  2. Re: [HELP] Stoploss and TP fixed

     

    Your EA is setting your SL and TP to zero on a new order.

     

    //open orders

    double SL,TP,ILots;

    int Ticket;

    SL=0;TP=0;ILots=Lots;

     

    Make these changes andthe ea should work

    double ,ILots;

    int Ticket,SL,TP;;

    SL=loss; TP=profit; ILots=Lots;

×
×
  • Create New...