Jump to content

jdsim1

Members
  • Posts

    121
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by jdsim1

  1. Can someone recommend a time zone indicator based on GMT that isn't so flashy that it adds clutter to my charts, but at a quick glance allows me to see the GMT time based on my broker's time zone. I use several scalping/short-term strategies that require I trade within a certain time before/after market opening/closing using GMT as the baseline.

     

    Thanks in advance.

     

    Skid

     

    try this

    hxxp://www.multiupload.com/RAAQ32W4Q3

     

    make sure allow dll is enabled - this will give broker time, local time. gmt time etc

  2. Re: @ Moving Average Candles MT4 Indicator @

     

    Moving Average Candles MT4 Indicator :-?

     

    http://www.massmirror.com/1847de5b4d03183c53beabeb4ebdb537.html

     

    http://img714.imageshack.us/img714/1456/eurusd22.gif

     

    http://img511.imageshack.us/img511/9351/eurusd2.gif

     

    http://img153.imageshack.us/img153/1879/eurusd.gif

     

     

    Kudos for the sharerr pleaseee! [-O<

     

     

     

     

     

    //+------------------------------------------------------------------+

    //| MA Candles.mq4 |

    //| Code adapted by cja |

    //+------------------------------------------------------------------+

     

    #property copyright "Code adapted by cja"

     

    //---- indicator settings

    #property indicator_chart_window

     

    #property indicator_buffers 4

    #property indicator_color1 RoyalBlue//wicks

    #property indicator_color2 Red//wicks

    #property indicator_color3 RoyalBlue

    #property indicator_color4 Red

     

    #property indicator_width1 1

    #property indicator_width2 1

    #property indicator_width3 3

    #property indicator_width4 3

    //MODE_SMA 0 Simple moving average,

    //MODE_EMA 1 Exponential moving average,

    //MODE_SMMA 2 Smoothed moving average,

    //MODE_LWMA 3 Linear weighted moving average.

     

    //PRICE_CLOSE 0 Close price.

    //PRICE_OPEN 1 Open price.

    //PRICE_HIGH 2 High price.

    //PRICE_LOW 3 Low price.

    //PRICE_MEDIAN 4 Median price, (high+low)/2.

    //PRICE_TYPICAL 5 Typical price, (high+low+close)/3.

    //PRICE_WEIGHTED 6 Weighted close price, (high+low+close+close)/4.

     

     

    //---- indicator parameters

    extern string IIIIIIIIIIIIIIIIIIIII=">>> MA Settings >>>>>>>>>>>>>>>>>";

    extern int MA1 = 5.0;

    extern int MA2 = 25.0;

    extern int MA1_MODE = 0;

    extern int MA2_MODE = 0;

    extern int MA1_PRICE = 0;

    extern int MA2_PRICE = 0;

    extern int MA1_SHIFT = 0;

    extern int MA2_SHIFT = 0;

     

    extern string IIIIIIIIIIIIIIIIIIIIIIIII=">>> Candle/Wick Display Settings >>>>>>>>>>>>>>>>>";

    extern int BarWidth = 1,

    CandleWidth = 3;

     

    extern bool Show_Comment = true;

     

     

    //---- indicator buffers

    double Bar1[],

    Bar2[],

    Candle1[],

    Candle2[],

    Candle3[],

    Candle4[],

    Candle5[],

    Candle6[];

     

    //+------------------------------------------------------------------+

    //| Custom indicator initialization function |

    //+------------------------------------------------------------------+

    int init()

    {

     

     

    IndicatorShortName("MA Candles");

    IndicatorBuffers(4);

     

    SetIndexBuffer(0,Bar1);

    SetIndexBuffer(1,Bar2);

    SetIndexBuffer(2,Candle1);

    SetIndexBuffer(3,Candle2);

     

    SetIndexStyle(0,DRAW_HISTOGRAM,0,BarWidth);

    SetIndexStyle(1,DRAW_HISTOGRAM,0,BarWidth);

    SetIndexStyle(2,DRAW_HISTOGRAM,0,CandleWidth);

    SetIndexStyle(3,DRAW_HISTOGRAM,0,CandleWidth);

     

    SetIndexLabel(0, "MA"+MA1+" + MA"+MA2);

    SetIndexLabel(1, "MA"+MA1+" + MA"+MA2);

    SetIndexLabel(2, "MA"+MA1+" + MA"+MA2);

    SetIndexLabel(3, "MA"+MA1+" + MA"+MA2);

    return(0);

    }

     

    int deinit()

    {

    //----

    Comment("");

    //----

    return(0);

    }

     

    double MA_1 (int i = 0){return(iMA(NULL,0,MA1,MA1_SHIFT,MA1_MODE, MA1_PRICE,i));}

    double MA_2 (int i = 0){return(iMA(NULL,0,MA2,MA2_SHIFT,MA2_MODE, MA2_PRICE,i));}

     

     

    void SetCandleColor(int col, int i)

    {

    double high,low,bodyHigh,bodyLow;

     

     

     

    bodyHigh = MathMax(Open,Close);

    bodyLow = MathMin(Open,Close);

    high = High;

    low = Low;

     

     

    Bar1 = low; Candle1 = bodyLow;

    Bar2 = low; Candle2 = bodyLow;

    Bar1 = low; Candle3 = bodyLow;

    Bar2 = low; Candle4 = bodyLow;

    Bar1 = low; Candle5 = bodyLow;

    Bar2 = low; Candle6 = bodyLow;

     

    switch(col)

    {

    case 1: Bar1 = high; Candle1 = bodyHigh; break;

    case 2: Bar2 = high; Candle2 = bodyHigh; break;

    case 3: Bar1 = high; Candle3 = bodyHigh; break;

    case 4: Bar2 = high; Candle4 = bodyHigh; break;

    case 5: Bar1 = high; Candle5 = bodyHigh; break;

    case 6: Bar2 = high; Candle6 = bodyHigh; break;

    }

    }

     

     

    int start()

    {

    for(int i = MathMax(Bars-1-IndicatorCounted(),1); i>=0; i--)

    {

    double Ma1 = MA_1(i);

    double Ma2 = MA_2(i);

     

     

     

    if(Ma1 > Ma2) SetCandleColor(1,i);

    else if(Ma1 < Ma2) SetCandleColor(2,i);

     

     

    string Label1="",Label2="";

    if(MA1_MODE==0)Label1="MA";if(MA2_MODE==0)Label2="MA";

    if(MA1_MODE==1)Label1="EMA";if(MA2_MODE==1)Label2="EMA";

    if(MA1_MODE==2)Label1="SMMA";if(MA2_MODE==2)Label2="SMMA";

    if(MA1_MODE==3)Label1="LWMA";if(MA2_MODE==3)Label2="LWMA";

     

    if(Show_Comment==true){

    Comment("\n","MA Candles "+Label1+" "+MA1+" & "+Label2+ " "+MA2+"");

    }

    }

     

    return(0);

    }

  3. Re: Xbars MA Scalper of tradingsystemforex.com

     

    I agree that we shouldn't share Funyoo's stuff here; however, I thought I would ask if anyone has had the time/chance to test the EA on pairs other than the EURUSD pair found in his set file? I haven't gotten around to it yet and was just curious. If others think this question is better addressed in another forum, I'll remove the post.

     

     

    Does the elite section at tradingsystemforex.com offer some Ea's that are worth using live. Im tired of useless backtests showing millions of dollars in profit only to find out it tanks the minute you try and actually use it. I really want to sign up for the elite section, but wanted to know if its worth it.

     

    Any insight would be greatly appreciated

  4. Re: Amazing Indicators

     

    I have placed the ma and macd indicators in experts/indicators folder and the 2 EA in the experts folder and yet they don't work.

     

    Any help please ? Do I have to rename them ?

     

     

    Try closing and restarting the platform.

     

    If that doesnt work then try using metaeditor (yellow icon with exclamation point at top ) and recompile by selecting the file from the list on the right and click compile.

  5. Does anyone have this or something like it?

     

    http://cgi.ebay.com/FOREX-METATRADER-FX-TRADE-SENTINEL-HIDDEN-STOP-EA-MT4_W0QQitemZ260510837351QQcmdZViewItemQQptZLH_DefaultDomain_0?hash=item3ca7a7ea67

     

    Its a hidden TP, SL with entry lines that you can adjust on chart by clicking and dragging. Should be a useful tool for scalping.

     

    SN edit: use

     brackets for links.[/i]
×
×
  • Create New...