TRO 2017 DONATIONAL INDICATORS

free & uncensored discussion arena for TheRumpledOne

Moderator: moderators

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 2017 DONATIONAL INDICATORS

Postby TheRumpledOne » Mon Sep 02, 2019 9:03 pm

Skyold wrote:For the INDI PRICE_TAVEL_ANALYZER, the input is OPERATIONS
GT
GE
EQ
NE
LE
LT
GT and LT I have understood. What do the other settings mean? Can someone explain that to me or give me a link where I can read all this?
Thanks


GE GREATER THAN OR EQUAL TO

EQ EQUAL TO

NE NOT EQUAL TO

LE LESS THAN OR EQUAL TO
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
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 2017 DONATIONAL INDICATORS

Postby TheRumpledOne » Mon Sep 02, 2019 9:09 pm

Skyold wrote:Hello TRO,
please can you explain why different results come out?


Because you filter out one before the other.

TRO001.png
TRO001.png (31.76 KiB) Viewed 5248 times


See the MyFilterA input?

If set to TRUE, it filters out all the instances that satisfy the criteria.

I thought I explained that in the PDF manual.
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
Skyold
rank: 50+ posts
rank: 50+ posts
Posts: 102
Joined: Mon Jul 22, 2019 3:51 pm
Reputation: 49
Location: Germany
Gender: Male

Re: TRO 2017 DONATIONAL INDICATORS

Postby Skyold » Mon Sep 02, 2019 9:36 pm

GE GREATER THAN OR EQUAL TO

EQ EQUAL TO

NE NOT EQUAL TO

LE LESS THAN OR EQUAL TO[/quote]


Thank you for your time and answer
Do the right, right and often enough = success

buffalo
rank: 50+ posts
rank: 50+ posts
Posts: 69
Joined: Mon Dec 17, 2018 6:56 pm
Reputation: 46
Gender: None specified

Re: TRO 2017 DONATIONAL INDICATORS

Postby buffalo » Wed Sep 04, 2019 9:15 pm

@TheRumpledOne would you mind sharing part of the code you use for frequency distributions on wick lengths? Im doing something similar in TradingView except itll be a histogram style. Im having trouble making it work with my limited coding abilities. Ive been trying to do lines of code along the lines of (high-close) but that only works for the upper wick of candles that closed green, thanks

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 2017 DONATIONAL INDICATORS

Postby TheRumpledOne » Thu Sep 05, 2019 4:58 am

CANDLETOP = MATHMAX(OPEN,CLOSE)

CANDLEBOTTOM = MATHMIN(OPEN,CLOSE)

UPPERWICK = HIGH - CANDLETOP

LOWERWICK = CANDLEBOTTOM - LOW

simple.
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
Skyold
rank: 50+ posts
rank: 50+ posts
Posts: 102
Joined: Mon Jul 22, 2019 3:51 pm
Reputation: 49
Location: Germany
Gender: Male

Re: TRO 2017 DONATIONAL INDICATORS

Postby Skyold » Sun Oct 13, 2019 6:37 pm

Hi TRO,
can you please explain in a few sentences what the differences are; 'my period' and 'my test period' ?
If I set 2 different TF, what does that mean?

Desktop Screenshot 2019.10.13 - 20.32.00.51.png
Desktop Screenshot 2019.10.13 - 20.32.00.51.png (134.54 KiB) Viewed 5033 times
Do the right, right and often enough = success

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 2017 DONATIONAL INDICATORS

Postby TheRumpledOne » Mon Oct 14, 2019 2:37 am

Skyold wrote:Hi TRO,
can you please explain in a few sentences what the differences are; 'my period' and 'my test period' ?
If I set 2 different TF, what does that mean?

Desktop Screenshot 2019.10.13 - 20.32.00.51.png






myTestPeriod is the period you are taking samples from (testing).

Do you want to test H1 candles within W1? If yes, then set myTestPeriod to H1 and myPeriod to W1.
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
Skyold
rank: 50+ posts
rank: 50+ posts
Posts: 102
Joined: Mon Jul 22, 2019 3:51 pm
Reputation: 49
Location: Germany
Gender: Male

Re: TRO 2017 DONATIONAL INDICATORS

Postby Skyold » Wed Oct 16, 2019 9:00 pm

TheRumpledOne wrote:
Skyold wrote:Hi TRO,
can you please explain in a few sentences what the differences are; 'my period' and 'my test period' ?
If I set 2 different TF, what does that mean?


myTestPeriod is the period you are taking samples from (testing).

Do you want to test H1 candles within W1? If yes, then set myTestPeriod to H1 and myPeriod to W1.


i think you mean, if i test the H1 candles within W1, then set myPeriod to H1 and myTestPeriod to W1.
because if I set myTestPeriod smaller than myPeriod then ERROR appears :roll:
Do the right, right and often enough = success

User avatar
Skyold
rank: 50+ posts
rank: 50+ posts
Posts: 102
Joined: Mon Jul 22, 2019 3:51 pm
Reputation: 49
Location: Germany
Gender: Male

Re: TRO 2017 DONATIONAL INDICATORS

Postby Skyold » Thu Oct 17, 2019 10:54 pm

Hi TRO,
need your help, because I want to understand this indi 'TRO2017_REAL_TIME_PRICE_ANALYZER' correctly. :roll:

myPeriod and myTestPeriod are set to H1.
Does it mean the following:
If the H1 candle goes below S1S2, then the probability is 85% that the same H1 candle ends above S1S2
or:
If the H1 candle closes below S1S2, then the probability is 85% that the next H1 candle will end above S1S2
thank you in advance

Desktop Screenshot 2019.10.18 - 00.35.02.81.png
Desktop Screenshot 2019.10.18 - 00.35.02.81.png (153.38 KiB) Viewed 4919 times
Do the right, right and often enough = success

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 2017 DONATIONAL INDICATORS

Postby TheRumpledOne » Fri Oct 18, 2019 2:21 pm

Skyold wrote:Hi TRO,
need your help, because I want to understand this indi 'TRO2017_REAL_TIME_PRICE_ANALYZER' correctly. :roll:

myPeriod and myTestPeriod are set to H1.
Does it mean the following:
If the H1 candle goes below S1S2, then the probability is 85% that the same H1 candle ends above S1S2
or:
If the H1 candle closes below S1S2, then the probability is 85% that the next H1 candle will end above S1S2
thank you in advance



First, we are NOT talking probability (which deals with the future), we are talking STATISTICS (which deals with the past).

Price closed below S1S2 15 times out of the last 100 H1 candles and above S1S2 85 times out of the last 100 H1 candles.

There is no probability in trading, only statistics.
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”