Jump to content

HunFxTrader

Members
  • Posts

    63
  • Joined

  • Last visited

Reputation Activity

  1. Like
    HunFxTrader got a reaction from paws in Chin Breakout Indicator + AutoTrader EA   
    Re: Chin Breakout Indicator + AutoTrader EA
     
    I have created a small ea to automate the trading with this breakout alert indicator. The expert takes the price values of the two horizontal breakout lines and if the last candle closes above the "top" line it places a pending BuyStop order above the last candle's high, or if the last candle closes below the "bottom" line it places a pending SellStop order below the last candle's low. The expert has money management, takeprofit, stoploss, and stoploss to breakeven functions as well.
     
    Enjoy!
     

    http://www.4shared.com/file/155044054/d9be945b/BreakoutTrader.html
  2. Like
    HunFxTrader got a reaction from hermes in instant forex profit   
    Re: instant forex profit
     
    Here you go!
     

    hxxp://[email protected]/file/112874814/59dfc82e/Ifxprofits_Course_Materials.html
     
    Enjoy!
  3. Like
    HunFxTrader got a reaction from jeabppqq in best indicator   
    Re: best indicator
     
    If you want to buy at the bottom and sell at the top you have to use the bollinger bands. You should buy when price comes back from outside the lower band and sell, when price comes back from outside the upper band. I'm using it with success along with cycle identifier, that helps to identify the top and bottom of the price swing.
    My settings:
    Timeframe: H4
    Bollinger Bands: 55 (it's not the default setting)
    Cycle identifier: default settings
     
    Here you have the BolliToucher that alerts when price touches the upper or lower bollinger bands, and the cycle identifier that alerts too, when it identifies a top or a bottom.
     
    Enjoy!
  4. Like
    HunFxTrader got a reaction from e-Invester in FXEB Equity Builder   
    Re: FXEB Equity Builder
     
    FXEB_v1.5mod_nodll here you go!
     

    hxxp://[email protected]/file/147533827/25ea6633/FXEB_v15mod_nodll.html
     
    Edit:
    It's the unplugged version of that EA what was shared above by PyeR2. It's a modification of the original 1.5 version, but this version gives better result on backtest than the original.
  5. Like
    HunFxTrader got a reaction from PipQueen2 in Forex Powerband Dominator   
    Re: Forex Powerband Dominator
     
    I am using it with success. I have 30% profit this month trading only with A setup in the direction of the main trend. I have 1-2 trades per week trading with 10 currency pairs.
  6. Like
    HunFxTrader got a reaction from sovereighn57 in instant forex profit   
    Re: instant forex profit
     
    Here you go!
     

    hxxp://[email protected]/file/112874814/59dfc82e/Ifxprofits_Course_Materials.html
     
    Enjoy!
  7. Like
    HunFxTrader reacted to niftymover in Share...ninjatrader-7 (with paasword) exclusively for my indo---friends   
    NINJATRADER-7 (WITH PASSWORD) EXCLUSIVELY FOR MY INDO---FRIENDS
     
    :D
     
    http://img14.imageshack.us/img14/6941/61001503.jpg
     
    HERE IS YOUR SWETYYYY:-$
     
    http://www.multiupload.com/NR1G96F28L
     
     
    ENJOYYYYY
  8. Like
    HunFxTrader got a reaction from freddy in MQL Coding Gurus Please Help!   
    The solution
     
    Okay Chris, here is the solution:
     
    First we need to get the last closed order and its profit from the orders history.
     

    int LastCloseTime = 0; double LastProfit = 0; for (int cnt = 0; cnt < OrdersHistoryTotal(); cnt++) { OrderSelect(cnt, SELECT_BY_POS, MODE_HISTORY); if (OrderSymbol()== Symbol() && OrderMagicNumber()== Magic) { if (OrderCloseTime() > LastCloseTime) { LastCloseTime = OrderCloseTime(); LastProfit = OrderProfit(); } } }
     
    Then we need two integers for counting the last consecutive winning and losing trades, and a global variable to save the last order's close time.
     

    int CntWinners=0; int CntLosers=0; if (!GlobalVariableCheck("LastCloseTime")) GlobalVariableSet("LastCloseTime",0);
     
    In the last step we need this code for counting:
     

    if (LastProfit>=0 && LastCloseTime>GlobalVariableGet("LastCloseTime")) { GlobalVariableSet("LastCloseTime",LastCloseTime); CntWinners+=1; // adding one to the winners CntLosers=0; // nulling the losers } if (LastProfit<0 && LastCloseTime>GlobalVariableGet("LastCloseTime")) { GlobalVariableSet("LastCloseTime",LastCloseTime); CntWinners=0; // nulling the winners CntLosers+=1; // adding one to the losers }
     
    If we want to print the actual number of the last consecutive winner and loser trades on to the chart we can do it this way:
     

    Comment("Last Consecutive Winners: ", CntWinners, "\n", "Last Consecutive Losers: ", CntLosers);
     
    I hope you find it useful!
  9. Like
    HunFxTrader reacted to soundfx in Need an EXPERT ADVISER   
    seggyson,
     
    Google "Multi-purpose trade management EA" and you'll find an EA which will do what you want and much more besides, free on FF.
     
    HunFxTrader,
     
    If you want to scale out all trades running on a particular account, then you don't have those problems.
     
    A good EA can determine which original order the new remaining position relates to anyway because the comment will be set to from #123456789 where 123456789 is the original order.
  10. Like
    HunFxTrader got a reaction from ⭐ musketeer in how do i Make my ea work with an ecn broker?   
    Yes, here is a great tick sender. With this tool you can run the experts or scripts at market close times as well.
     

    http://www.mediafire.com/?uvjod2924t52lqi
  11. Like
    HunFxTrader reacted to smurf43 in 21 Tr@ding Systems   
    hxxp://www.meg@[email protected]/?d=A0VE1O4H
  12. Like
    HunFxTrader reacted to alright in Trend Pullback System: Perhaps Best Entry Signals Ever! (share)   
    I have used MT4 range bars in several occasions and never experienced this. If you think the lack of ticks could be the cause, you can try this little free tool
    http://i51.tinypic.com/5l7ac1.jpg
    You can run it in the systray and it will send a tick at the interval you want to set. It's useful to backtest EA's as well. As the site where you can get it needs a registration and there is some trouble by logging in later, I decided to upload the program here. Enjoy :)
    http://www.mediafire.com/file/uvjod2924t52lqi/mt4ticker05.zip
  13. Like
    HunFxTrader got a reaction from t2g in how do i Make my ea work with an ecn broker?   
    EA for ECN Brokers
     
    Hi digitalsakurauk!
     
    I have done it for you! You need to test it with your ecn broker.
     
    Have a great week end!
     

    http://www.megaupload.com/?d=3HPMPMWQ
  14. Like
    HunFxTrader got a reaction from tomislav in how do i Make my ea work with an ecn broker?   
    EA for ECN Brokers
     
    Hi digitalsakurauk!
     
    I have done it for you! You need to test it with your ecn broker.
     
    Have a great week end!
     

    http://www.megaupload.com/?d=3HPMPMWQ
  15. Like
    HunFxTrader got a reaction from ForexExpert in instant forex profit   
    Re: instant forex profit
     
    Here you go!
     

    hxxp://[email protected]/file/112874814/59dfc82e/Ifxprofits_Course_Materials.html
     
    Enjoy!
  16. Like
    HunFxTrader got a reaction from kltan in G7_USD Indicator   
    Re: G7_USD Indicator
     
    I have modified this indicator and have added a suffix string to it, so you can use it with any currency symbol that has suffix. I have tested it on IBFX mini account with "m" suffix, and it works properly, but when you attach the indicator to your chart you can change the suffix "m" to any other suffix, that your broker uses.
    In addition you don't need any code number to use the indi.
     
    Enjoy! :)
     

    http://[email protected]/file/194152393/cba64b9f/G7_USD_suffix.html
  17. Like
    HunFxTrader got a reaction from forexi in The Channel Scalper EA   
    Re: The Channel Scalper EA
     
    I have corrected the ECN support for this EA. In this version you can change the ECN function true or false, so you can use it with non ECN broker and ECN broker as well.
     
    Enjoy!
     

    http://[email protected]/file/163650029/614a1102/channel-scalper-101_ecnsupport.html
×
×
  • Create New...