• 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 :)

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

Rosalina

Member
Credit Hunter
Credits
0
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.
 

Attachments

  • NikkiSix Setting.jpg
    NikkiSix Setting.jpg
    65.5 KB · Views: 752
  • Binary 1m Chart, 5m expiry.jpg
    Binary 1m Chart, 5m expiry.jpg
    258.2 KB · Views: 859
  • Forex 1m Scalping.jpg
    Forex 1m Scalping.jpg
    292.7 KB · Views: 775
  • NikkiSix.ex4
    NikkiSix.ex4
    70.7 KB · Views: 326
  • mt4gui2.rar
    mt4gui2.rar
    3.3 MB · Views: 426
Last edited:
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.

what's the sales page?
 
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 !
 

Attachments

  • upload_2021-6-1_21-38-28.png
    upload_2021-6-1_21-38-28.png
    91 KB · Views: 1,066
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 !
 
View attachment 133829

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 !
can share your EA?
 
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?
 
I can see that it repaints a lot on M1 - which timeframe do you use?
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.
 
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.
 

Attachments

  • upload_2021-6-2_11-15-14.png
    upload_2021-6-2_11-15-14.png
    324.1 KB · Views: 1,023
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 !
Apa kabar Pak Ang ? Anytime for you sir!
 
You need to have a good broker with very very low spreads to be profitable consistently with this system.
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.
 
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.
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.
 
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.
 

Attachments

  • 1-day.jpg
    1-day.jpg
    1.2 MB · Views: 333
Back
Top