1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
    Dismiss Notice

Nikki Six for both Forex Scalping and 5m Binary Options trading

Discussion in 'Indicators dan Tools' started by Rosalina, 01 Jun 2021.

  1. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
    This is an indicator that I paid for 3 months license. Developer has unlocked my MT4 account because I said I have few brokers. It can be used for trading both Forex and BO. So far my results are good so I decided to share it with members here. Please try it out before my license expired.

    Pictures attached are self-explanatory. Settings of indicator are also in pictures.

    Copy NikkiSix.ex4 into Indicator folder
    Copy mt4gui2.dll into Libraries folder. Remember to check "Allow DLL import" box in the indicator.
     

    Attached Files:

    Last edited: 01 Jun 2021
    • Friendly Friendly x 1
  2. john jones

    john jones Member Credit Hunter

    Equity
    Credit
    Ref Point
    Do you have a website where we can see more about this system,
     
  3. samruk

    samruk Member Credit Hunter

    Equity
    Credit
    Ref Point
    what's the sales page?
     
    • Dumb Dumb x 1
  4. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
    upload_2021-6-1_21-38-28.png

    I wrote an EA to call the indicator. Don't look at the 1st trade (AUDUSD) because it was traded manually. First time I am automating so I keep the lotsize to < 0.1 lot. Risk-to-Reward ratio of 1:1 and only EURUSD pair. If good result can be achieved consistently using EA, i will consider more pairs and bigger lotsize.

    This is how I called the NikkiSix indicator from my EA :

    double BuyArrow = iCustom(Symbol(), 0, "NikkiSix", 0, 1); // previous candle
    double SellArrow = iCustom(Symbol(), 0, "NikkiSix", 1, 1); // previous candle
    double StrikePrice = iCustom(Symbol(), 0, "NikkiSix", 2, 0); // current running candle
    double TakeProfitPrice = iCustom(Symbol(), 0, "NikkiSix", 3, 0); // current running candle
    double StopLossPrice = iCustom(Symbol(), 0, "NikkiSix", 4, 0); // current runnng candle

    // filter out random values in Indicator's memory Buffer .
    if (BuyArrow > 1000) BuyArrow = 0;
    if (SellArrow > 1000) SellArrow = 0;
    if (StrikePrice > 1000) StrikePrice = 0;
    if (TakeProfitPrice > 1000) TakeProfitPrice = 0;
    if (StopLossPrice > 1000) StopLossPrice = 0;

    if (BuyArrow > 0) {
    // calculate your lotsize, slippage etc
    TicketNumber = OrderSend(_Symbol,OP_BUY,LotSize,Ask,Slippage,StopLossPrice,TakeProfitPrice,"",0,0,clrLime);
    }
    else if (SellArrow > 0) {
    // calculate your lotsize, slippage, etc
    TicketNumber = OrderSend(_Symbol,OP_SELL,LotSize,Bid,Slippage,StopLossPrice,TakeProfitPrice,"",0,0,clrLime);
    }

    Please post your feedback !
     
    • Like Like x 1
  5. RKarno

    RKarno Member

    Equity
    Credit
    Ref Point
    Wow Rose, I didn't know you can code EA. No wonder the guys in the field operation team called you beauty with brains! What else do you do ? How is your bitcoin trading ? Manage to cash the bull run ? Someday I will swing by your workspace and learn from you. Wear mask I promise !
     
  6. samruk

    samruk Member Credit Hunter

    Equity
    Credit
    Ref Point
    Rosalina sales page?
     
    • Dumb Dumb x 1
  7. Realbg

    Realbg Member Credit Hunter

    Equity
    Credit
    Ref Point
    When does it expire and sales page please
    Thanks for the share
     
  8. G_Johnson

    G_Johnson Member Credit Hunter

    Equity
    Credit
    Ref Point
    I can see that it repaints a lot on M1 - which timeframe do you use?
     
    • Dumb Dumb x 1
  9. mashna1364

    mashna1364 Member Credit Hunter

    Equity
    Credit
    Ref Point
    can share your EA?
     
  10. blackking

    blackking Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    Thank you for your valuable sharing and caring, I am appreciate for your efforts
    But how you running this ea, use VPS or use PC and running in a certain time?
     
  11. john jones

    john jones Member Credit Hunter

    Equity
    Credit
    Ref Point
    You need to have a good broker with very very low spreads to be profitable consistently with this system.
     
    • Old Old x 1
  12. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
    if you understand coding, you will understand that most indicators either repaint or 1 or 2 candle late unless you are using price action which is very difficult to code. The trick is to use the repaint or late indicator with another one or more indicator in confluence and decide on your trade based on the current candle. After the current running candle, what the indicator shows previously no longer matters.
     
  13. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
    upload_2021-6-2_11-15-14.png

    so far so good, still the same EURUSD pair. I didn't edit the result. You can confirm by checking if there is any difference from my last picture posted.
     
  14. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
    Apa kabar Pak Ang ? Anytime for you sir!
     
  15. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
    Sometimes spreads can get really crazy and it stretches your profit target level. You ended up not hit TP at all. On the other hand, if you wait for the spread to return back to normal, you may just missed trading opportunity. You can see from my result that I have an ECN account (broker RoboForex). I pay commission so i don't have to worry about spread.
     
    • Like Like x 1
  16. Katakura

    Katakura Member

    Equity
    Credit
    Ref Point
    Arrows disappear.
    Nikki B.png Nikki A.png
     
  17. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
  18. 0725601103

    0725601103 Member Credit Hunter

    Equity
    Credit
    Ref Point
    You are using the blue tick to close trades
     
  19. john jones

    john jones Member Credit Hunter

    Equity
    Credit
    Ref Point
    RoboForex is good and I agree, I use them for testing and Exeness, is a great one also, your system on an American broker is suicide. Thanks for sharing with the community.
     
  20. Rosalina

    Rosalina Member Credit Hunter

    Equity
    Credit
    Ref Point
    1st ... Since I already paid for the license, so I used it myself and show my result. This is 1-day result. Firstly ... Please note I used an EA to automate my trade. The TP level is based on the recommendation provided by indicator. My emotion was not involved.
    2nd ... I paid 3 months license for this indicator and requested the seller to remove the restriction to work only on 1 account number. Because of that, I shared the indicator to the members in this community. So, anyone is welcomed to try it out if you feel comfortable. I did not suggest that you go buy or rent the same indicator. I don't get any commission out of that and I don't want to. And please don't question me on why indicator repaints or is late or ?? or how to use etc because I am not the developer.
    Lastly ... This is my last post on this thread because I got nothing more to say. Please share your experience if you have tried.
     

    Attached Files:

    • Like Like x 1

Share This Page