Jump to content

paws

Members
  • Posts

    24
  • Joined

  • Last visited

Reputation Activity

  1. Like
    paws reacted to jdsim1 in @ Moving Average Candles MT4 Indicator @   
    Re: @ Moving Average Candles MT4 Indicator @
     

     
     
     
     
     
    //+------------------------------------------------------------------+
    //| 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);
    }
  2. Like
    paws reacted to dennyyusuf in (Req) PW Trend Forex Indicator   
    here my my friend http://indo-investasi.com/showthread.php/5630-Nice-Share-PW-Trend-Indicator-Manual?highlight=pwtrend
  3. Like
    paws reacted to minhtri in (Req) Forex Trend Finder 3.0 by Jeff Wilde   
    http://www.4shared.com/file/YkltvZ4V/triadformula.html
  4. Like
    paws reacted to PIPHORE in (Req) Forex Trend Finder 3.0 by Jeff Wilde   
    no... the indicator display is fine but there is annoying message on the top left of the screen that you need to validate the indicator.
     
    I have here the new version of FxTrendFinder 3.0
     
    http://[email protected]/file/C8Ry-C1j/ForexTrendFinder.html
     
    i wish someone could remove the annoying message...
  5. Like
    paws reacted to obapedepede in Dollar rain!   
    There are many problem facing forex trades, out of which are.
     
    * Broker to trade with,
    * When to enter trade,
    * Where to put stop loss,
    * Take profit / Target level,
    * Perfect forex system,
    * Favorable money Management and so on.
     
    With a new very powerful customize indicator, all these problem can be easily solved. The indicator worth $279.00, but you can get it 100% free of charge. You only need to install it into your trading platform and it is going to indicate.
    * Exact point where you have to enter a trade for any currency fair,
    * Pinpoint where your take profit / target has to be put,
    * Exit stop loss level with a reasonable risk reward ratio.
     
    This is available for only serious minded people, 100% free, with a very perfect newsletter forecast, and so much more. Send your email to [email protected] with have it in your email.
    You can also get a very powerful robot that has been tested for years with no record of failure which can give you over 100 pips every trading day.
    Also, a very sure forex system that will help you to brake through with any amount of money you are trading with.
     
    Best of luck.
     
    visit www.forex-thebestbroker.blogspot.com
  6. Like
    paws reacted to FX777 in ReQ : R@E@D P@H@O@E@N@I@X   
    For those looking for the manual, there isn't much more information, than those already presented on the sales website, but if you are curious, this is the link for the manual:
    hxxp://[email protected]/document/Yrb8FFVY/Manual.html
  7. Like
    paws reacted to cacus in cacus STARC strategy   
    Hi there forum!
    I'm here to share a strategy i've been working on from some time ago.
    I've shared this one at the list i'm for about for 2 years. Now i'm glad to share it here too.
    I'm attaching the indicator and the templates for m1, m5, m15 and m60 charts. Also the profile I use for scalping and analysing the waves.
    Let me know what you think about this idea.
    It's similar to my older BBK strategy, i'm gonna post that one too on a next post.
    Be careful about breakouts, specially on lower TFs, watch the waves on higher TFs.
    About the strategy...
    It's a channel strategy/analysis system. Some of you may find a correlation with MAs, some other would find this useful for EW analysis on different TFs... That's what would be interesting to discuss here.
    I was, and frankly i still a bit, disgusted with people criticizing with no fundamentals or arguments or just simply taking and not collaborating even with a simple "Hey, have you thought about adding a xxx to it"...
    It's as simple as (initially) a 14 periods MA generating a channel based on ATR values added to the MA (+atr for top of the channel and -atr for low channel border), and i've added accelerator in order to get the channel to adapt better in case fast movements start to happen.
    It's based on STARC channels, i've found it to be a strategy Warren Buffet used to make it's fortune (don't know if this is actually true).
    Look for it on google and you'll find out more about it.
    You can play with the periods for ATR and MA as you like for each pair, also you can attach the channel to whatever TF you like and make the channel to get draw on a different TF, like adding the channel to a m1 chart but getting it to draw a m5 channel changing the Periodo value to 5, for example. Play with it.
     
    Here you'll find the pack:
    http://www.4shared.com/file/bnYuSf7v/Cacus_channel_pack.html
    Here some screenshots of how i use it:
    http://img838.imageshack.us/img838/1944/cacuschannelstrategy.jpghttp://img838.imageshack.us/img838/1944/cacuschannelstrategy.jpg
    http://img13.imageshack.us/img13/1361/cacuschannelstrategy2.jpg
    http://img691.imageshack.us/img691/4916/workspace.gif
    Enjoy!
     
    JC
     
    title changed to STARC -mod
  8. Like
    paws reacted to san1111 in Accurate Scalper system   
    Hi mograst,
     
    here you are
     
    http://www.4shared.com/file/-KxnEnQs/AdpRSIEA.html
  9. Like
    paws reacted to KelvinHand in Symply the best trading strategy/system   
    Hi,
    This is what i think about the Sideway Breakout Strategy. What do you think ?

    http://yfrog.com/mtswbotrendg
     
    http://yfrog.com/mtswbotrendg
  10. Like
    paws reacted to annexy in Symply the best trading strategy/system   
    This system appears to be very promising with said high winning rates.......Can someone help translate the trading plan doc and possibly re_package it for our understanding ....believe me,its not just tittle,its very promising.I stumbled upon it while surfing..........
     
    Code:http://www.4shared.com/file/Nl7dU8tj/SIMPLY_THE_BEST_FOREX.html
  11. Like
    paws reacted to craven in NEW Never Bef0re 5een F0rex 5y5tem - 1OOO+ P1P5 @ M0nth   
    Description:
     
    cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=220622877484
     
     
    How to receive this file:
     
    1. Leave me 'Thanks' on this post.
    2. PM me your email address.
     
     
    Why does it have to be done like this?
     
    Reason being, for privacy purposes.
     
     
    To the Moderators of this forum:
     
    If there is a problem with the way I am conducting this transaction, please let me know and I will cease conduct.
     
     
    KIND ATTN DEAR MEMBERS:
     
    THE SYSTEM IS AVAILABLE FOR DOWNLOAD IN THE THREAD. PLEASE READ THE THREAD. PLEASE DO NOT IMMEDIATELY GO TO THE LAST PAGE AND POST UR EMAIL REQUESTING THE SYSTEM TO BE SENT TO YOU. ALL THAT WOULD DO IS ATTRACT EMAIL COLLECTING SPAM BOTS, INCREASE TRAFFIC AND SLOW THE SITE DOWN.
     
    MANY THX FOR YOUR KIND CO-OPERATION
     
    Herman
  12. Like
    paws reacted to fx1001 in Alerter Indicator   
    Re: One of the best indicator - ever !
     

     
    Hi,
     
    Its a realy simple alerter indi. Lets presume you have a few MA lines
    on your chart and/or fibo-lines and/or some other indicator (indicators
    in the separate window - not included).
     
    So every one of those lines that you have on your chart, *Alerter4U*
    will alert you when the price come in a range of your predefined setting.
    10 pips is by default but you can change this in what ever you want,
    1, 5 or 25 pips e.g.
     
    Enjoy
  13. Like
    paws reacted to ⭐ ekilibrium in CrazyHedge EA   
    please start reading the Thread from the 25th page. :)
  14. Like
    paws reacted to DominoFX in Forex Day Monster   
    Re: Forex Day Monster
     
    Here is the Forex Profit Monster v3.0:

    http://www.sendspace.com/file/hwwe1l
×
×
  • Create New...