Jump to content

atilabr

Members
  • Posts

    84
  • Joined

  • Last visited

Posts posted by atilabr

  1. Tired of plotting support and resistance lines? The PZ Support Resistance is a multi-timeframe indicator that auto-detects and plots important price levels while analyzing its importance.

     

    Boost your technical analysis overnight

    Detect important price levels without browsing through charts

    Recognize the relative strength of all price levels at a glance

    Save up to half an hour of plotting lines for every trade

    The indicator is non-repainting

     

    http://www.pointzero-trading.com/Products/PZSupportResistance

     

    Looks good,Share.

  2. Hello,

     

    A special request concerning an alerter indicator.

     

    What I am looking for is an alert when a candle cross a line and close behind (trendline, MA, ALF indicator). I haven’t found yet what I am looking for.

     

    The idea would be to have the ability to add different name of line ( trendline 1, ALF, MA50 for example) and when the price break and close behind one of those line we would have an alert.

     

    The idea to put the name of a line (s) (indicator as ALF or other) as the parameter would make it easier to choose the line and have multiple alert.

     

    Please let me know what you think about that or if you have any ideas of indicator which already do this…

     

    Best regards,

    Gringoh

     

    I understand a bit, look if that is what you seek.

     

    http://www.mediafire.com/download/k4kv067tv4kaabk/MA_Alerts_by_Atila.mq4

  3. Hi Guru's. I have a question. How do I get an indicator like fisher m11, if I am on 15min time frame to show me 1h. FOr example I load fisher on 1h hour but I trade on 15min, instead of switching screens the whole time is it possible to attach fisher m11 on my 15min timeframe but it shows the 1h instead of 15min if that makes sense

     

    Post the indicator can look what I can do later.

  4. #property indicator_separate_window

    #property indicator_buffers 1

    #property indicator_color1 Blue

    #property indicator_width1 1

     

    extern double T = 300.0;

     

    double SIBuffer[];

     

    int init() {

     

    SetIndexStyle(0, DRAW_LINE);

    SetIndexBuffer(0, SIBuffer);

    SetIndexLabel(0, "Swing Index");

    SetIndexEmptyValue(0, 0.0);

     

    return(0);

    }

     

    int deinit()

    {

    return(0);

    }

     

    int start()

    {

    int counted_bars = IndicatorCounted();

     

    int i, limit;

    double R, TR, AA, BB, CC, DD, Tpoints, X,K,ER,SH1,SH2,SI;

    if(counted_bars == 0)

    limit = Bars - 1;

    if(counted_bars > 0)

    limit = Bars - counted_bars;

    Tpoints = T*MarketInfo(Symbol(), MODE_POINT);

     

    for(i = limit; i >= 0; i--)

    {

    AA = MathAbs(High - Close[i-1]);

    BB = MathAbs(Low - Close[i-1]);

    CC = MathAbs(High - Low[i-1]);

    DD = MathAbs(Close[i+1] - Open[i-1]);

     

    if(AA>BB && AA>CC)

    {

    R = (AA+BB)/2 + DD/4;

    }

    if (BB>CC && BB>AA)

    {

    R = (BB+AA)/2 + DD/4;

    }

    else

    {

    R = (CC+DD)/4;

    }

     

    X =(Close-Close[i+1]+(Close-Open)/2 + Close[i+1] - Open[i+1] );

     

    SIBuffer =16 * X/R * MathMax (AA,BB);

     

    }

    return(0);

    }

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

  5. http://www.4shared.com/dir/WhY8nOUc/_online.html

     

    Heres a link to a MACD 2 histogram indicator which I use.

    What I need is to add an alarm when the histogram part of the MACD crosses through the zero line either way.

    Also an arrow or indicator showing on the chart where it occured would be handy but not essential.

    It should be able to be used on any time frame and the results showing which pair the cross happens on shown in a pop up box.

    I hope someone can help and I may also post this somewhere else as I dont if this is the right thread!!

     

    Well I decided to make this indicator, this indicator have not decompiled, then used as a call.

    Take a look and see if something has to change.

×
×
  • Create New...