Re: BeatlemaniaSA's XU-Hybrid Trading System

251
kklkanna wrote: Sun Feb 06, 2022 5:52 pm Hi can you send me the cci indicator in mq4 format, because i want to modify the code to get green and red bars values using iCustom for my EA, it will be very helpful
Mrtools released it here ONLY in .ex4 format... viewtopic.php?p=1295457062#p1295457062

In addition please be aware of the RULES



Regards,
BM
BEATS V5 - "Enjoy The Quiet Between Trades”

Improve Your Trading Psychology - NO FEAR, NO DOUBT


Re: BeatlemaniaSA's XU-Hybrid Trading System

252
Here is the CCI - nrp advanced(mtf + alerts + arrows) histo.mq4 which is a modification of the CCI - nrp advanced(mtf + alerts + arrows).mq4 from app.php/attach/file/3319474 with a new ShowHistogram option that displays the CCI as a histogram just as it is displayed with the TrueTL MTF CCI.ex4 indicator. The ShowHistogram option is the last option in the list of options.

The timeframe option includes First higher time frame, Second higher time frame, Third higher time frame choices as well as "Auto higher time frame1" and "Auto higher time frame2" choices.

Auto higher time frame1 displays the following higher timeframes depending on which timeframe you are currently on. To change the higher time frames that are display just change it in the code as shown below and recompile the indicator.

For example if you choose "Auto higher time frame1", when you are on the 5 minute timeframe the 15 minute timeframe CCI histogram will be displayed as shown in the Get the auto higher timeframe1" code below if(Per==5) _tf=15. However, if you choose "Auto higher time frame2", when you are on the 5 minute timeframe the 60 minute timeframe CCI histogram will be displayed as shown in the "Get the auto higher timeframe2" code below if(Per==5) _tf=60.

Code: Select all

   if(_tf==-4) //Get the auto higher timeframe1
   {
      if(Per==1) _tf=5; // 1 minute, M1
      if(Per==5) _tf=15; // 5 minute, M5
      if(Per==15) _tf=60; // 15 minutes, M15
      if(Per==30) _tf=60;  // 30 minutes, M30
      if(Per==60) _tf=240; // 60 minutes, H1
      if(Per==240) _tf=1440; // 240 minutes, H4
      if(Per==1440) _tf=10080; // 1440 minutes, D1
      if(Per==10080) _tf=43200; // 10080 minutes, W1
      if(Per==43200) _tf=43200; // 43200 minutes, MN
   }
   if(_tf==-5) //Get the auto higher timeframe2
   {
      if(Per==1) _tf=15; // 1 minute, M1
      if(Per==5) _tf=60; // 5 minute, M5
      if(Per==15) _tf=240; // 15 minutes, M15
      if(Per==30) _tf=240;  // 30 minutes, M30
      if(Per==60) _tf=1440; // 60 minutes, H1
      if(Per==240) _tf=1440; // 240 minutes, H4
      if(Per==1440) _tf=10080; // 1440 minutes, D1
      if(Per==10080) _tf=43200; // 10080 minutes, W1
      if(Per==43200) _tf=43200; // 43200 minutes, MN
   }
In the GBPNZD M5 screenshot below, the top sub-window shows the indicator with ShowHistogram=false, CCI Period=14, CCIPrice=Typical, and Jurik smooth length=5 as in the original indicator.


The second and third sub-windows show the indicator with its new default settings, ShowHistogram=true, CCI Period=5, CCIPrice=Close, and Jurik smooth length=0 and Time frame=Auto higher time frame1 and Time Frame=Auto higher time frame2 respectively to match the TrueTL MTF CCI.ex4 indicator settings and display.

It also has a bias buffer number 11 that you can use to get the buy or sell bias of the histogram by iCustom calls for use in an EA as in this sample code below.

Code: Select all

string indyCCImtf="indyCCImtf";
double CCI_bias=iCustom(NULL,0,indyCCImtf,PERIOD_H4,11,0);
Whether the ShowHistogram is true of false, the bias buffer gives the same readings.

bias=1 when the cci < the zero line and increasing
bias=2 when the cci > the zero line and increasing
bias=-1 when the cci > the zero line and decreasing
bias=-2 when the cci < the zero line and decreasing

One last thing, the OverBought and Oversold colors, all arrows and alerts are switched off when you use ShowHistogram=true option and or select any higher time frame. I hope you all find this ShowHistogram modification useful.

Note: After some trial and error I found that the settings, Jurik smooth length=3 and Jurik smooth phase=100 worked best for making good trade entries. Jurik smooth length=0 and Jurik smooth phase=0 made the indicator too sensitive. You can experiment with the setting to see what works best for you.
These users thanked the author global for the post (total 8):
kvak, Dracula, dansmol, eduarescobar, BeatlemaniaSA, josi, RodrigoRT7, DaffyTaffy

Re: BeatlemaniaSA's XU-Hybrid Trading System

253
global wrote: Mon Feb 07, 2022 3:40 am Here is the CCI - nrp advanced(mtf + alerts + arrows) histo.mq4 which is a modification of the CCI - nrp advanced(mtf + alerts + arrows).mq4 from app.php/attach/file/3319474 with a new ShowHistogram option that displays the CCI as a histogram just as it is displayed with the TrueTL MTF CCI.ex4 indicator. The ShowHistogram option is the last option in the list of options.

The timeframe option includes First higher time frame, Second higher time frame, Third higher time frame choices as well as "Auto higher time frame1" and "Auto higher time frame2" choices.

Auto higher time frame1 displays the following higher timeframes depending on which timeframe you are currently on. To change the higher time frames that are display just change it in the code as shown below and recompile the indicator.

For example if you choose "Auto higher time frame1", when you are on the 5 minute timeframe the 15 minute timeframe CCI histogram will be displayed as shown in the Get the auto higher timeframe1" code below if(Per==5) _tf=15. However, if you choose "Auto higher time frame2", when you are on the 5 minute timeframe the 60 minute timeframe CCI histogram will be displayed as shown in the "Get the auto higher timeframe2" code below if(Per==5) _tf=60.

Code: Select all

   if(_tf==-4) //Get the auto higher timeframe1
   {
      if(Per==1) _tf=5; // 1 minute, M1
      if(Per==5) _tf=15; // 5 minute, M5
      if(Per==15) _tf=60; // 15 minutes, M15
      if(Per==30) _tf=60;  // 30 minutes, M30
      if(Per==60) _tf=240; // 60 minutes, H1
      if(Per==240) _tf=1440; // 240 minutes, H4
      if(Per==1440) _tf=10080; // 1440 minutes, D1
      if(Per==10080) _tf=43200; // 10080 minutes, W1
      if(Per==43200) _tf=43200; // 43200 minutes, MN
   }
   if(_tf==-5) //Get the auto higher timeframe2
   {
      if(Per==1) _tf=15; // 1 minute, M1
      if(Per==5) _tf=60; // 5 minute, M5
      if(Per==15) _tf=240; // 15 minutes, M15
      if(Per==30) _tf=240;  // 30 minutes, M30
      if(Per==60) _tf=1440; // 60 minutes, H1
      if(Per==240) _tf=1440; // 240 minutes, H4
      if(Per==1440) _tf=10080; // 1440 minutes, D1
      if(Per==10080) _tf=43200; // 10080 minutes, W1
      if(Per==43200) _tf=43200; // 43200 minutes, MN
   }
In the GBPNZD M5 screenshot below, the top sub-window shows the indicator with ShowHistogram=false, CCI Period=14, CCIPrice=Typical, and Jurik smooth length=5 as in the original indicator.


Image



The second and third sub-windows show the indicator with its new default settings, ShowHistogram=true, CCI Period=5, CCIPrice=Close, and Jurik smooth length=0 and Time frame=Auto higher time frame1 and Time Frame=Auto higher time frame2 respectively to match the TrueTL MTF CCI.ex4 indicator settings and display.

It also has a bias buffer number 11 that you can use to get the buy or sell bias of the histogram by iCustom calls for use in an EA as in this sample code below.

Code: Select all

string indyCCImtf="indyCCImtf";
double CCI_bias=iCustom(NULL,0,indyCCImtf,PERIOD_H4,11,0);
Whether the ShowHistogram is true of false, the bias buffer gives the same readings.

bias=1 when the cci < the zero line and increasing
bias=2 when the cci > the zero line and increasing
bias=-1 when the cci > the zero line and decreasing
bias=-2 when the cci < the zero line and decreasing

I hope you all find this ShowHistogram modification useful.

thanks for this update bro
for auto time frame , can i see in the settings to add?? where i can see this
"There is NO GOD higher than TRUTH" - Mahatma Gandhi

Re: BeatlemaniaSA's XU-Hybrid Trading System

254
sal wrote: Mon Feb 07, 2022 4:19 am thanks for this update bro
for auto time frame , can i see in the settings to add?? where i can see this
When you open the indicator properties dialog box just click first Time frame option "Current Time frame" at the top of the Value column. Once you click it you will see a drop-down list of time frames. The last two options in that list are "Auto higher time frame1" and "Auto higher time frame2".

If you want different time frames than the default ones to be automatically displayed when you change time frames then you can just edit the code and change the time frames (_tf) after the equal signs (_tf=15 etc.) in the int timeFrameValue(int _tf, int Per) function from lines 644 to 665. Below is a copy of the relevant code within the indicator that you can change as you desire then recompile the indicator with MetaEditor.

Code: Select all

   if(_tf==-4) //Get the auto higher timeframe1
   {
      if(Per==1) _tf=5; // 1 minute, M1
      if(Per==5) _tf=15; // 5 minute, M5
      if(Per==15) _tf=60; // 15 minutes, M15
      if(Per==30) _tf=60;  // 30 minutes, M30
      if(Per==60) _tf=240; // 60 minutes, H1
      if(Per==240) _tf=1440; // 240 minutes, H4
      if(Per==1440) _tf=10080; // 1440 minutes, D1
      if(Per==10080) _tf=43200; // 10080 minutes, W1
      if(Per==43200) _tf=43200; // 43200 minutes, MN
   }
   if(_tf==-5) //Get the auto higher timeframe2
   {
      if(Per==1) _tf=15; // 1 minute, M1
      if(Per==5) _tf=60; // 5 minute, M5
      if(Per==15) _tf=240; // 15 minutes, M15
      if(Per==30) _tf=240;  // 30 minutes, M30
      if(Per==60) _tf=1440; // 60 minutes, H1
      if(Per==240) _tf=1440; // 240 minutes, H4
      if(Per==1440) _tf=10080; // 1440 minutes, D1
      if(Per==10080) _tf=43200; // 10080 minutes, W1
      if(Per==43200) _tf=43200; // 43200 minutes, MN
   }
These users thanked the author global for the post (total 2):
sal, DaffyTaffy

XU-Hybrid Trading System v2.3 released :)

255
Hi guys,

I've released version 2.3 of my XU-Hybrid trading system and you can find it on the first page of this thread. It now includes the ribbon version of the XU-ma indicator. Pease go ahead and test it and provide your feedback.

I've included separate templates for each timeframe but each of the indicators in the sub-window are are set to "first higher timeframe". Pease test the setting and determine which works best for you :)

Have fun trading this week everyone and make those pip$.

Warmest regards,
BeatlemaniaSA
BEATS V5 - "Enjoy The Quiet Between Trades”

Improve Your Trading Psychology - NO FEAR, NO DOUBT


Moving AveragesRe: XU-Hybrid Trading System v2.3 released :)

256
BeatlemaniaSA wrote: Mon Feb 07, 2022 2:04 pm I've released version 2.3 of my XU-Hybrid trading system
u are tops man............ i love dis thread now & first page cos so clean and desirable........... xard topic drive me NUTS bro thx for upgrade first page its like index!!! :problem: :problem: :problem:

your system rocks!!!! and still LIGHTWEIGHT!!!!
These users thanked the author moey_dw for the post:
BeatlemaniaSA
Official Forex-station GIF animator at your service 👨‍⚖️
See a GIF with Forex-station.com on it? I probably made it
The best divergence indicator in the world.
Real news exists: Infowars.com 👈

Re: XU-Hybrid Trading System v2.3 released :)

257
BeatlemaniaSA wrote: Mon Feb 07, 2022 2:04 pm I've released version 2.3 of my XU-Hybrid trading system and you can find it on the first page of this thread. It now includes the ribbon version of the XU-ma indicator. Pease go ahead and test it and provide your feedback.
This is fantastic sir. I love the support and resistance dots - they are such a good guide as well as the 4 x convenient template files.

Using it now! You are amazing.

H4 Template file - XAUUSD Gold
These users thanked the author ChuChu Rocket for the post (total 2):
BeatlemaniaSA, moey_dw
Important: The worst forex brokers of all time 👎

Re: XU-Hybrid Trading System v2.3 released :)

258
moey_dw wrote: Mon Feb 07, 2022 3:59 pm u are tops man............ i love dis thread now & first page cos so clean and desirable........... xard topic drive me NUTS bro thx for upgrade first page its like index!!! :problem: :problem: :problem:

your system rocks!!!! and still LIGHTWEIGHT!!!!
Thanks moey_dw :)

Always appreciated from you! Thanks for all the support you've given me since I joined Forex-Station!! :problem:

Regards,
BM
These users thanked the author BeatlemaniaSA for the post:
moey_dw
BEATS V5 - "Enjoy The Quiet Between Trades”

Improve Your Trading Psychology - NO FEAR, NO DOUBT

Re: XU-Hybrid Trading System v2.3 released :)

259
ChuChu Rocket wrote: Mon Feb 07, 2022 4:05 pm This is fantastic sir. I love the support and resistance dots - they are such a good guide as well as the 4 x convenient template files.

Using it now! You are amazing.
Thanks ChuChu Rocket :)

I'm so pleased you are loving the system and don't forget...keep bringing home the GOLD!! :Rofl: :Fire: :problem:

Regards,
BM
BEATS V5 - "Enjoy The Quiet Between Trades”

Improve Your Trading Psychology - NO FEAR, NO DOUBT


Who is online

Users browsing this forum: Austin3, knglerxst, twix and 56 guests