Jump to content

acaciam39

Members
  • Posts

    94
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    acaciam39 reacted to lptuyen in [req] PowerFul & Accurate EA   
    Here it is:
     
    http://www.mediafire.com/?1bbbiqidoidaahi
     
    Best,
    lptuyen
  2. Like
    acaciam39 reacted to forex4all in [SHARE] Nice Grid EA -- Download Free   
    Hello__Traders__
    I am going to share one very good robot with you.
    Nice Grid V.1 is a very good and safe Grid ea.Its working on 4 and 5 digit mt4.
     
    Setting for 4 digit
     
    Takeprofit = 10
    Pipstep = 30
     
    Rest are default
     
    Setting for 5 digit
     
    Takeprofit = 100
    Pip steo = 300
     
    Rest are default
     
     
    Best result with gbpusd 5min.
     
    If you have big account than you can also use on other pairs.
    this ea can work on all brokers like exness,tradefort,instaforex,forexforyou.
     
    Normally Grid robots are risky,but you can minimize the risk by manage the risk.
     
    The best idea to use Nice Grid v.1 is use on instaforex standered account with deposit $500 and more pair EURUSD,GBPUSD,USDCHF,AUDUSD,NZDUSD.
    More pair will minimize your risk and you can earn very good profit by this ea.
     
    For download
     
    Thanks__Happy trading
  3. Like
    acaciam39 reacted to ForexMike in [HELP-EDU] EA FAPTurbo ver.57 & FAPIchimoku ver.1.2   
    Posting in the correct area will help you: http://indo-investasi.com/forumdisplay.php/55-Mql-Programming-and-Coding
     
    Good Luck
  4. Like
    acaciam39 reacted to BobR in cs_2011 the expert which turned 10,000 into 113000 in three months   
    Here ya go,Told.
     

    http://www.mediafire.com/?nizs9e7iqb8kbd6
     
    I have retained the intent of the MQ5 source as much as possible, but some MQ5 functions, in particular the concept of splitting orders into "deals," do not have counterparts in MQ4.
    Do you happen to know what pairs and timeframes this EA uses?
  5. Like
    acaciam39 reacted to callahan in Want a EA to make 100% in one month with 50% DD   
    Well I'm not sure what to make of that now but thanks bein' for the sentiment anyhow.
     
    Respectfully,
    Callahan <):)
  6. Like
    acaciam39 reacted to callahan in Want a EA to make 100% in one month with 50% DD   
    Would there be like anymore information on this one? :-/
  7. Like
    acaciam39 reacted to jsintl in Want a EA to make 100% in one month with 50% DD   
    How can we test this EA?
  8. Like
    acaciam39 reacted to apresau in [SHARE] 10 pips daily system   
    Hi folks,
    Thanks for the feedback - very kind of you.
    To make it easier, I've opened a mediafire account.
    The indicator has been tidied up and put here -
     
    http://www.mediafire.com/?jjwdn9dxb0a4fb6
     
    (should have done this before - sorry)
     
    Purely mechanical strategies (no trader discretion involved)
    can usually be coded this way for testing.
     
    I don't mind trying others if you need them.
  9. Like
    acaciam39 reacted to apresau in [SHARE] 10 pips daily system   
    Strategies don't come much simpler than this.
    To quickly check the strategy against different pairs, I wrote a histogram indicator.
    I'm not permitted to post attachments, so here's the code -
     
    //+------------------------------------------------------------------+
    //| RSI_MA Cross Histo.mq4 |
    //+------------------------------------------------------------------+
    #property indicator_separate_window
    #property indicator_buffers 2
    #property indicator_color1 SteelBlue
    #property indicator_style1 STYLE_SOLID
    #property indicator_width1 2
    #property indicator_color2 Crimson
    #property indicator_style2 STYLE_SOLID
    #property indicator_width2 2
     
    //---- input parameters
    extern int RSI_Period = 21;
    extern int MinRSIcross = 0;
    extern int FastMaPeriod = 5;
    extern int SlowMaPeriod = 12;
    extern int MaType = 1;
    extern int MinMAcross = 0;
    extern int shift = 1;
     
    //---- indicator buffers
    double UpHisto[];
    double DnHisto[];
     
    double points;
    //+------------------------------------------------------------------+
    //| Custom indicator initialization function |
    //+------------------------------------------------------------------+
    int init()
    {
    //---- indicators
    SetIndexBuffer(0,UpHisto);
    SetIndexStyle(0,DRAW_HISTOGRAM);
    SetIndexBuffer(1,DnHisto);
    SetIndexStyle(1,DRAW_HISTOGRAM);
     
    //----
    if(Digits==3 || Digits==5)
    points = Point*10;
    else points = Point;
     
    return(0);
    }
    //+------------------------------------------------------------------+
    //| Custom indicator deinitialization function |
    //+------------------------------------------------------------------+
    int deinit()
    {
    //----
     
    //----
    return(0);
    }
    //+------------------------------------------------------------------+
    //| Custom indicator iteration function |
    //+------------------------------------------------------------------+
    int start()
    {
    if (Bars <= 10) return (0);
    int counted_bars;//=IndicatorCounted();
    if(counted_bars<0) return(-1);
    //if(counted_bars>0) counted_bars--;
    int limit=Bars-counted_bars;
    //----
    for (int i = limit; i >= 0; i--) {
    double RSI = iRSI(NULL,0,RSI_Period,PRICE_CLOSE,i+shift);
    double FastMa = iMA(NULL,0,FastMaPeriod,shift,MaType,PRICE_CLOSE,i);
    double SlowMa = iMA(NULL,0,SlowMaPeriod,shift,MaType,PRICE_CLOSE,i);
     
    UpHisto = 0;
    DnHisto = 0;
    if(RSI>50+MinRSIcross){
    if(FastMa>SlowMa+MinMAcross*points){
    UpHisto = 1;
    }
    }
    if(RSI<50-MinRSIcross){
    if(FastMa<SlowMa-MinMAcross*points){
    DnHisto = 1;
    }
    }
    }
    //----
     
    //----
    return(0);
    }
     
    //+------------------------------------------------------------------+
     
    If long conditions are met, a blue histo bar shows.
    If short conditions are met, a red histo bar shows.
    If conditions are not met, no bar.
     
    MinRSIcross and MinMAcross are included to filter some of the false trades.
    (MinMAcross is in pips, adjusted for 4- and 5-digit brokers)
    The shift variable is included because MA crosses often don't confirm
    until the open of the next bar (hence the default value of 1)
     
    Like most MA crosses, it seems best suited for longer trends.
     
    enjoy
  10. Like
    acaciam39 reacted to kimimax in Antix Forex System   
    Hello this is my old system it,s not a holy grail but solid system try it if you find good use it or mix it with you,r own system :)
     
    TWO SYSTEM M15,M30 (recommended)
    Also it,s can use on other timeframe
     
     
    http://imageshack.us/a/img802/5510/antixm15.png[/url]
     

    http://www.mediafire.com/?d3wa2zkoz2xa5sc
  11. Like
    acaciam39 reacted to lptuyen in [SHARE] 10 pips daily system   
    Haven't yet tried it, but it seem very good. Here is the link:
     
    http://www.4shared.com/rar/ApP13eJ2/10pips_daily.html
     
    BRs.
  12. Like
    acaciam39 reacted to pavlus777 in [Share] P1pjet EA   
    Version 1.02 full EDU
    http://minus.com/lw3ZEhFDReksi
     
    Have Fun ;)
  13. Like
    acaciam39 reacted to finimej in Free EA, Stoch Power Scalper v5.2, 26247 pips gain in 4 days   
    Thanks for a friend of my for drawing my attention to this EA.
    reoptimized with settings, and pairs. trade on M15. and I have put equity protection to 5000USD. You can download the whole set here. Please notice, you shall change the minimum equity protection to your level, otherwise the EA wont trade. it is optimized for broker Alpari NZ.
     
    Click here to see my demo forwarding test on last week at Alpari NZ
    week 1, do not trade on friday.
    start 5000 USD, profits 3488 USD, total = 8488 USD, on alpari NZ demo account, minimum lot = 0.01, max lot=0.5.
    total gained pips= 26247 pips, green pips!
     
    The gain most one is also the most risky one.
    The EA is based on the stochastice, sell on overbought, and buy on the oversell. Counter trend trading=scaring. and it doing martigale on both profits side and lossing side.
    in order not to blow your account, you shall use the setting provided for 5000 usd account. minimum lot = 0.01 and max lot = 0.4 for each pair, for 5 K to 10 K deposite.
    Last week, the trend was zigzag, so it is ok. if there are strong trend like friday on bernanke and important statistic, then do not trade with it. trade on demo first.
     
    What I would like ask you for help?
    find the best settings and find the improvement to avoid to blow account.
     
    I traded it on M15 timeframe, with the settings provided. on pairs with both buy and sell are allowed.
    EURCHF
    EURUSD
    EURGBP
    GBPJPY
    USDCHF
    EURJPY
    CHFJPY
    GBPUSD
    USDJPY
    GBPCHF
    EURAUD
    AUDJPY
    ---
     
    next week, I will also try another setup in parallell, also on timeframe M15, and on pairs
    BUYONLY pairs
    GBPUSD
    EURGBP
    GBPCHF
    USDCHF
    CHFJPY
    AUDJPY
    EURJPY
     
    In the above we actually only
    buy 2 EUR, buy 1 AUD, sell 1 CHF, sell 3 JPY, buy 1 GBP
     
     
    Sell only pairs
    8. CADJPY
    9. AUDUSD
    10. USDJPY
    11. EURUSD
    12. EURCHF
    13. GBPJPY
    14 USDCAD
     
    In the sell pair above, we actually only
    Buy 3 JPY, and sell 1 AUD, sell 2 EUR, buy 1 CHF. Sell 1 GBP.
     
    So you sell the buy all pairs and sell pairs actually hedge them out. Then Weckna shall catch the profits from the pairs then the pairs is move upp and down. Just my thought, the hedge will limit the floating draw down.
    http://www.forexmt4.com/Results_2009_08_07_AUG07/Stoch%20Spike%20Wackena%20Scalper%20v2.1%20%20M5%20%282%29%20stoch-2.1-setfile.gif
    here are other peoples forward test
  14. Like
    acaciam39 reacted to callahan in Free EA, Stoch Power Scalper v5.2, 26247 pips gain in 4 days   
    Well pardon me now! Stoch Power EAs 5.2 and 5.0. Goddam fast earners... :">
     
    "File deleted due to callahan closing down"
  15. Like
    acaciam39 reacted to klod in [HELP]Convert this EA into .mq4 and delete the expires date !   
    to delete the date, yes : me
    to decompile the ea : non, i can't.
  16. Like
    acaciam39 reacted to lptuyen in FX Ultimate indicator   
    Anyone can share this:
    http://www.fxultimateindicator.com/
     
    It looks a great indicator. Thanks in advance.
     
    UPDATE: just got it here
     
    http://www.mediafire.com/?tgpqsat7acx1571
  17. Like
    acaciam39 got a reaction from syazwan in [SHARE] FOREX OCTOPUSS By Rita Lasker   
    http://www.forexoctopus.com/pictures/header.jpg
    http://www.forexoctopus.com/pictures/intro_oct.jpg
     
    http://www.forexoctopus.com/pictures/icons_octopus.jpg
    http://www.forexoctopus.com/pictures/1398_pips_are.jpg
     
     
    http://www.forexoctopus.com/pictures/359pips_usdchf.jpg
    http://www.forexoctopus.com/pictures/302pips_cadjpy.jpg
     
     

     
    http://www.forexoctopus.com/pictures/octopus_table_of_results.jpg
     
    http://www.forexoctopus.com/pictures/3d_s.jpg
     
    FREE Download Link :
     

     
     
    Enjoy ... :)
  18. Like
    acaciam39 got a reaction from Freddie in [SHARE] FOREX OCTOPUSS By Rita Lasker   
    http://www.forexoctopus.com/pictures/header.jpg
    http://www.forexoctopus.com/pictures/intro_oct.jpg
     
    http://www.forexoctopus.com/pictures/icons_octopus.jpg
    http://www.forexoctopus.com/pictures/1398_pips_are.jpg
     
     
    http://www.forexoctopus.com/pictures/359pips_usdchf.jpg
    http://www.forexoctopus.com/pictures/302pips_cadjpy.jpg
     
     

     
    http://www.forexoctopus.com/pictures/octopus_table_of_results.jpg
     
    http://www.forexoctopus.com/pictures/3d_s.jpg
     
    FREE Download Link :
     

     
     
    Enjoy ... :)
  19. Like
    acaciam39 got a reaction from john1368 in [HELP]Convert this EA into .mq4 and delete the expires date !   
    hello;
     
    I need help for anybody to convert EA.BSS26-12-2012 from .ex4 files into .mq4 files and I hope someone can delete the expire date Dec; 26 /2012 too.
     
    Here's the EA's download link :
     

     
    or
     

     
     
    Thank you for your help.
  20. Like
    acaciam39 got a reaction from casey12 in Breakout Sniper & Chaos System by Oei Hartono   
    http://img717.imageshack.us/img717/5368/breakoutsnipertpl.gif
    Breakout Sniper
     
    http://img716.imageshack.us/img716/5441/chaos.gif
    Chaos
     

     
    Download Link :
     

    http://www.mirrorcreator.com/files/168KISY4/Oei_Hartono_Breakout___Chaos.rar_links
  21. Like
    acaciam39 reacted to tradesafe in KangarooEA   
    I wonder if someone would like to have a crack at this one.
     
    The download has the set-up installer, the manual and the white paper.
     
    Looking at the myfxbook stats it doesn't trade that often but if it keeps moving up that slope it's plenty good enough for me.
     
    Perhaps we can improve it to trade more often and unlock it to trade on more pairs.
     

     
    Keep your powder dry.
     
    TS
  22. Like
    acaciam39 got a reaction from thaomoua in [FREE]Oei Hartono - Number Trade   
    http://img231.imageshack.us/img231/5074/numbertrade.gif
     
     
    Download Indicators :
     

    http://www.mirrorcreator.com/files/168KISY4/Oei_Hartono_Breakout___Chaos.rar_links
     
     
    Download Templates :
     

    http://www.mirrorcreator.com/files/8R6E6EPC/Number_Trade_0.rar_links
     

  23. Like
    acaciam39 got a reaction from daretolive in [FREE]Oei Hartono - Number Trade   
    http://img231.imageshack.us/img231/5074/numbertrade.gif
     
     
    Download Indicators :
     

    http://www.mirrorcreator.com/files/168KISY4/Oei_Hartono_Breakout___Chaos.rar_links
     
     
    Download Templates :
     

    http://www.mirrorcreator.com/files/8R6E6EPC/Number_Trade_0.rar_links
     

  24. Like
    acaciam39 got a reaction from thaomoua in Breakout Sniper & Chaos System by Oei Hartono   
    http://img717.imageshack.us/img717/5368/breakoutsnipertpl.gif
    Breakout Sniper
     
    http://img716.imageshack.us/img716/5441/chaos.gif
    Chaos
     

     
    Download Link :
     

    http://www.mirrorcreator.com/files/168KISY4/Oei_Hartono_Breakout___Chaos.rar_links
  25. Like
    acaciam39 got a reaction from murtamad in Breakout Sniper & Chaos System by Oei Hartono   
    http://img717.imageshack.us/img717/5368/breakoutsnipertpl.gif
    Breakout Sniper
     
    http://img716.imageshack.us/img716/5441/chaos.gif
    Chaos
     

     
    Download Link :
     

    http://www.mirrorcreator.com/files/168KISY4/Oei_Hartono_Breakout___Chaos.rar_links
×
×
  • Create New...