TRO 2016 DONATIONAL INDICATORS

free & uncensored discussion arena for TheRumpledOne

Moderator: moderators

joaobinario
rank: <50 posts
rank: <50 posts
Posts: 1
Joined: Tue Feb 02, 2016 10:05 am
Reputation: 0
Gender: None specified

Re: TRO 2016 DONATIONAL INDICATORS

Postby joaobinario » Tue Feb 09, 2016 2:16 pm

Thank you friend, you make a difference, you is great, a big hug from a Brazilian

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO 2016 DONATIONAL INDICATORS

Postby TheRumpledOne » Wed Feb 10, 2016 5:25 pm

eurusdweekly.png
eurusdweekly.png (47.51 KiB) Viewed 5092 times
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!

Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO 2016 DONATIONAL INDICATORS

Postby TheRumpledOne » Mon Feb 15, 2016 5:18 pm

eurusddaily.png
eurusddaily.png (57.79 KiB) Viewed 4894 times


Notice the TURN TRADE on the daily chart. Can you SEE the profit?
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO 2016 DONATIONAL INDICATORS

Postby TheRumpledOne » Tue Feb 16, 2016 6:50 pm

​BATCH ​002​ of the TRO2016 DONATIONAL INDICATORS sent today.


TRO2016_FREQ_DIST_HiOp_Oplo_UI_TT_001.png
TRO2016_FREQ_DIST_HiOp_Oplo_UI_TT_001.png (40.96 KiB) Viewed 4821 times
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO 2016 DONATIONAL INDICATORS

Postby TheRumpledOne » Wed Feb 17, 2016 8:19 pm

eurusddaily.png
eurusddaily.png (57.56 KiB) Viewed 4787 times
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
PeterBerregi
rank: <50 posts
rank: <50 posts
Posts: 39
Joined: Sun Nov 08, 2009 9:37 am
Reputation: 10
Location: Sydney
Gender: Male

Re: TRO 2016 DONATIONAL INDICATORS

Postby PeterBerregi » Thu Feb 18, 2016 4:12 am

Hi TRO

Thanks for your indicators, they are bloody fantastic to say the least.

Just wanted to let you know that I have found a couple of bugs in the "TRO2016_MP_BREAKOUT" indicator, both of which probably only affect me - but I thought you may find it useful just in case.

Both are caused by my broker appending ".xp" to all pairs, thus "AUDUSD" becomes "AUDUSD.xp".

First up, when I load the indicator, I wasn't getting anything displayed, even when adding ".xp" to the myAddition input variable in the indicator.

Stepping through the code and setting some breakpoints, I isolated line 167 (within the init() routine) as the issue:

Code: Select all

if (IsDotted()) addition=".";


I have commented this out and now the indicator works correctly for me. I am guessing, though I haven't checked, that this will fix other indicators of yours that I haven't been able to get working.

The second bug is related to the above and it is simply that 23 characters is not enough for me to fully display the number of pips for the "High break" of a pair. I was seeing:

TRO2016_MP_BREAKOUT_BEFORE.jpg
TRO2016_MP_BREAKOUT_BEFORE.jpg (28.87 KiB) Viewed 4745 times


Adjusting line 454

Code: Select all

lbl2[j]  = fFill(tsymbol + " " + twMESSAGE, 23) ;
to

Code: Select all

lbl2[j]  = fFill(tsymbol + " " + twMESSAGE, 24) ;
now correctly displays the full pips:

TRO2016_MP_BREAKOUT_AFTER.jpg
TRO2016_MP_BREAKOUT_AFTER.jpg (26.8 KiB) Viewed 4745 times


I may need to adjust this to 25 characters just in case it runs for more than 100 :wink: . Actually, I just had a thought. To make it more robust, instead of changing the number to 24/25 it can be changed to:

Code: Select all

lbl2[j]  = fFill(tsymbol + " " + twMESSAGE, (23 + StringLen(addition)));
which will make it work for any length of prefix/suffix that brokers may use.

Thanks again for all your hard work

User avatar
PeterBerregi
rank: <50 posts
rank: <50 posts
Posts: 39
Joined: Sun Nov 08, 2009 9:37 am
Reputation: 10
Location: Sydney
Gender: Male

Re: TRO 2016 DONATIONAL INDICATORS

Postby PeterBerregi » Thu Feb 18, 2016 6:25 am

Another option is prior to printing the pair on the screen is to remove the myAddition suffix string.

This would probably be the best option as it would mean the widths of the dashboards don't have to be changed when multiple timeframes are displayed.

I guess one approach could be:

1. Call the IsDotted() function BEFORE adding the myAddition input suffix.
2. Do the work of the indicator for all specified pairs.
3. Prior to printing the results to the screen/dashboard, remove the myAddition from the pair.

Hope I am not being too forward here - you are the gun after all!!

User avatar
PeterBerregi
rank: <50 posts
rank: <50 posts
Posts: 39
Joined: Sun Nov 08, 2009 9:37 am
Reputation: 10
Location: Sydney
Gender: Male

Re: TRO 2016 DONATIONAL INDICATORS

Postby PeterBerregi » Thu Feb 18, 2016 12:21 pm

Sorry TRO to be a complete pain in the b#tt but could I put in a request for an addition to the "TRO2016_MP_BREAKOUT" indicator.

Is it possible to add a high/low water mark when a pair is currently within a High Break or Low Break. So you would see something like:

AUDJPY -64 / 109
AUDUSD Low Break 40 (51)
EURGBP reversed 15
EURJPY High Break 10 (19)

Let me know if that makes sense.

Thanks mate.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO 2016 DONATIONAL INDICATORS

Postby TheRumpledOne » Thu Feb 18, 2016 6:13 pm

eurusddaily.png
eurusddaily.png (55.94 KiB) Viewed 4662 times


Can you see that if you keep trading in the direction of the last turn, there is profit on the horizon?
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO 2016 DONATIONAL INDICATORS

Postby TheRumpledOne » Thu Feb 18, 2016 6:15 pm

PeterBerregi wrote:Sorry TRO to be a complete pain in the b#tt but could I put in a request for an addition to the "TRO2016_MP_BREAKOUT" indicator.

Is it possible to add a high/low water mark when a pair is currently within a High Break or Low Break. So you would see something like:

AUDJPY -64 / 109
AUDUSD Low Break 40 (51)
EURGBP reversed 15
EURJPY High Break 10 (19)

Let me know if that makes sense.

Thanks mate.


I could but can you explain what the benefit would be?

The TRO_WICK_SIZE will put those numbers on the chart.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “TheRumpledOne”