Please bro, could you be kind to share your indicators and template ?Yuri_I wrote: Tue Mar 16, 2021 7:09 pm I used Uncle Lee System as a basis. It was laid out here recently. The rest of the indicators are to taste....
NQ100M1.png
Re: XARD - Simple Trend Following Trading System
6492The benefits of using the portrait view screen
You can code on one part of the screen while seeing the result on the chart below... nice.
I tested the Daily percent figure (making sure that it went to zero the following day).
Works a treat.
Xard777
You can code on one part of the screen while seeing the result on the chart below... nice.
I tested the Daily percent figure (making sure that it went to zero the following day).
Works a treat.
Xard777
- These users thanked the author xard777 for the post (total 9):
- stond, Narkarn, Skyold, moey_dw, gamerredd, traderokey, mcmstar, happy_trader, Jedidiah
XARD: If Carlsberg made charts... Probably the best charts in the world
Re: XARD - Simple Trend Following Trading System
6493Not really trading today, just testing stuff.
You can see the Daily & Current percent working OK.
Now running three sets of Triangles TF-1, TF0, and TF+1
Xard777
You can see the Daily & Current percent working OK.
Now running three sets of Triangles TF-1, TF0, and TF+1
Xard777
XARD: If Carlsberg made charts... Probably the best charts in the world
Re: XARD - Simple Trend Following Trading System
6494That post was not meant for you, so no need for your response. I've been here for a little while now and I don't make unneccesary requests. Xard understands what I mean. The price display on the XU Panel comes out with many decimal places. This is because my broker symbol is "GER30.i" and Xard doesn't have that in his code. I could easily fix that if I had the .mq4 file.Yuri_I wrote: Thu Mar 18, 2021 1:22 am Open the properties of this indicator and write the symbols as they appear in your MT4. I think so. Why once again strain a person.
XARD: I already have GER in the code, it should work as GER30
if( StringFind( aPairs[x], "JPY", 0) != -1 ) { Precision = 100; nDigits = 2+digits;}
else if( StringFind( aPairs[x], "WS3", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "DJ", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "DOW", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "US3", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "#US", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "US5", 0) != -1 ) { Precision = 10; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "S&P", 0) != -1 ) { Precision = 10; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "SP5", 0) != -1 ) { Precision = 10; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "SPX", 0) != -1 ) { Precision = 10; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "UST", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "NDX", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "US1", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "NAS", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "US2", 0) != -1 ) { Precision = 10; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "HK5", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "HKC", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "NIK", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "JP2", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "JPN", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "CHI", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "CAC", 0) != -1 ) { Precision = 1; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "FRA", 0) != -1 ) { Precision = 1; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "DAX", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "DE" , 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "GER", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "#GE", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "DE3", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "ITA", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "ESP", 0) != -1 ) { Precision = 1; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "SPA", 0) != -1 ) { Precision = 1; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "FTS", 0) != -1 ) { Precision = 1; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "UK1", 0) != -1 ) { Precision = 1; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "UKO", 0) != -1 ) { Precision = 1000; nDigits = 3+digits;}
else if( StringFind( aPairs[x], "USO", 0) != -1 ) { Precision = 1000; nDigits = 3+digits;}
else if( StringFind( aPairs[x], "WTI", 0) != -1 ) { Precision = 1000; nDigits = 3+digits;}
else if( StringFind( aPairs[x], "BRE", 0) != -1 ) { Precision = 1000; nDigits = 3+digits;}
else if( StringFind( aPairs[x], "XAG", 0) != -1 ) { Precision = 100; nDigits = 3+digits;}
else if( StringFind( aPairs[x], "SIL", 0) != -1 ) { Precision = 100; nDigits = 3+digits;}
else if( StringFind( aPairs[x], "NAT", 0) != -1 ) { Precision = 100; nDigits = 3+digits;}
else if( StringFind( aPairs[x], "XAU", 0) != -1 ) { Precision = 10; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "GOL", 0) != -1 ) { Precision = 10; nDigits = 1+digits;}
else if( StringFind( aPairs[x], "BTC", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else { Precision = 10000; nDigits = 4+digits;}
Re: XARD - Simple Trend Following Trading System
6495** Hey, may I know which template you have? Thanks.
Re: XARD - Simple Trend Following Trading System
6496traderokey wrote: Thu Mar 18, 2021 10:08 pm That post was not meant for you, so no need for your response. I've been here for a little while now and I don't make unneccesary requests. Xard understands what I mean. The price display on the XU Panel comes out with many decimal places. This is because my broker symbol is "GER30.i" and Xard doesn't have that in his code. I could easily fix that if I had the .mq4 file.
XARD: I already have GER in the code, it should work as GER30
if( StringFind( aPairs[x], "JPY", 0) != -1 ) { Precision = 100; nDigits = 2+digits;}
else if( StringFind( aPairs[x], "DAX", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "DE" , 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "GER", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "#GE", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else if( StringFind( aPairs[x], "DE3", 0) != -1 ) { Precision = 1; nDigits = 0+digits;}
else { Precision = 10000; nDigits = 4+digits;}
Thanks Xard for checking this out. It displays 4 decimal places on my platform but that's just aesthetic issue, I can definitely live with that. Thanks again
XARD: OOps! My Bad, I thought it was the Dash that was to be amended. It is the Panel. OK, try this...
Update
Whoop whoop!! Thanks Xard. It works perfectly plus the Daily percent feature!
- These users thanked the author traderokey for the post:
- xard777
Re: XARD - Simple Trend Following Trading System
6497xard777 wrote: Thu Mar 18, 2021 9:52 pm Not really trading today, just testing stuff.
You can see the Daily & Current percent working OK.
Now running three sets of Triangles TF-1, TF0, and TF+1
Xard777
The Daily percent feature works a treat. It's going to be so helpful to me especially to remind me to stop and not be greedy...
Re: XARD - Simple Trend Following Trading System
6498Xard777 you are doing a great work here and keep it up! I sincerely want to thank you for sharing such a great trading system. I want to know if you can code the triangles to have alert once they formed so that we can know when it appeared and the chart. Just suggesting.... Thanks once again.xard777 wrote: Thu Mar 18, 2021 9:52 pm Not really trading today, just testing stuff.
You can see the Daily & Current percent working OK.
Now running three sets of Triangles TF-1, TF0, and TF+1
Xard777
Re: XARD - Simple Trend Following Trading System
6499Dear Xard,xard777 wrote: Thu Mar 18, 2021 9:52 pm Not really trading today, just testing stuff.
You can see the Daily & Current percent working OK.
Now running three sets of Triangles TF-1, TF0, and TF+1
Xard777
Is it possible to identify the tf of the triangle either through colour code or text next to the dot? Kindly let me know if you can include this too.
Thanks
SK
XARD: Yes, will probably colour code it over the weekend.
Re: XARD - Simple Trend Following Trading System
6500All,
Does anyone have XARD compounding excel sheet for US500 please?
Thanks and regards
SK
Does anyone have XARD compounding excel sheet for US500 please?
Thanks and regards
SK