Percent Change Array

Lauri

New member
VIP
Hey guys! I am looking for a table, array?? I don't do much in the coding dept., but can do simple things. ;) I thought there was a table that you could plug in an instrument(/ES, /NG, etc. ) and it would tell you what the percent change per hour is/was. 1-2a, 2-3a, 3-4a, etc. and on what day M, T, W, Th, F. Is there something like that on this platform?
For example, it is common knowledge between 10a-11a /ES can change direction. But if you knew that this happen on Th, 90% of the time, you would be there on Th between 10a- 11a. Right?!

Is this something I can find on here, but just haven't yet? Thanks in advance!
 
I'm not sure this is quite what you're looking for, but I whipped this one up a while back and some have found it useful

https://usethinkscript.com/threads/es-futures-quasi-algo-1-hour-out-prediction-for-thinkorswim.6282/

The kind of thing you're talking about is statistical probability analysis. It's difficult to do in ThinkScript.

Perhaps that helps

-mashume
Thanks Mashume, I see what you did there. Nice! I guess I am thinking of a different type of analysis. The table I saw was a M-F table with each hour listed with their avg percent move for that hour, for the whole 24 hours. I guess there must have been at least a weeks worth of data in the table I saw. :) And honestly, I cannot recall if it was just for that week, or an accumulation of a month, etc., etc..

I like to trade oil on a 1M chart. It seems you have this set up for different particular markets. Do you have an oil version of this? I am intrigued and will take a look at this.

Do you have any suggestions on where I may find something like this? Where the table would build itself by entering the instrument and getting the data to populate. That's what I'm looking for. As I said earlier I trade /CL. And like a child, it has certain habits. That's the reason for my search. When I saw it years ago, I didn't need it. I would like to find, or have one built. I think it would help.

Thank you soooooo much for your response. Happy Holidays!
 
Hey guys! I am looking for a table, array?? I don't do much in the coding dept., but can do simple things. ;) I thought there was a table that you could plug in an instrument(/ES, /NG, etc. ) and it would tell you what the percent change per hour is/was. 1-2a, 2-3a, 3-4a, etc. and on what day M, T, W, Th, F. Is there something like that on this platform?
For example, it is common knowledge between 10a-11a /ES can change direction. But if you knew that this happen on Th, 90% of the time, you would be there on Th between 10a- 11a. Right?!

Is this something I can find on here, but just haven't yet? Thanks in advance!

no, there isn't anything like that in thinkscript.
maybe something could be made using the API?

IF, something was attemped in thinkscript, it would need to have variables for each hour of each weekday...
24 hr x 5 days = 120 variables

depending on how data is displayed, might be able to do 1 day at a time, so just 24 variables,... a lot but not horrible.

i have an idea.... no guarantees...
 
So this one is based on the study I've done elsewhere. I went through and exported > 2 years of 5m data for /CL and then did a bunch of aggregations and some python and came up with this.

It is TIME ZONE DEPENDENT That is, my data is all for Pacific time (where the break in trading is 14:00 to 15:00. If you look at the data, this is reflected. You will need to adjust the code to set the GMT time to your local time zone. I can't help this. That also means there will be a different (read wrong) value for the bars overnight... but it should be correct for rth -- this is because I didn't write code to change the weekday number if the clock is adjusted... only the clock.

Code:
#########################################################
#
#   Next Hour /CL Trading Range
#     Algorithmic Prediction
#           with differentiation for
#           the day of the week
#
#
#   mashume at usethinkscript.com
#
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
#
#  This Version /CL only
#  Functional on 1, 2, 3, 5, 10, 15, 20, 30, 60 minute charts
#
#########################################################

declare upper;

def Y = 31556926;
def M = 2629743;
def D = 86400;
def H = 3600;
def HalfHour = 1800;
def epoch = (getTime() / 1000);
def YMD = (epoch % Y) - (epoch / Y);
def month = (Floor(YMD / M) + 1);
def GMT = Floor((epoch % D) / H);
def HOUR = if GMT > 4 then GMT - 4 else if GMT < 4 then (GMT + 24) - 4 else 0;

def tf = getAggregationPeriod();

def barsPerHour = if tf == AggregationPeriod.HOUR then 1
    else if tf == AggregationPeriod.THIRTY_MIN then 2
    else if tf == AggregationPeriod.TWENTY_MIN then 3
    else if tf == AggregationPeriod.FIFTEEN_MIN then 4
    else if tf == AggregationPeriod.TEN_MIN then 6
    else if tf == AggregationPeriod.FIVE_MIN then 12
    else if tf == AggregationPeriod.THREE_MIN then 20
    else if tf == AggregationPeriod.TWO_MIN then 30
    else if tf == AggregationPeriod.MIN then 60
    else double.nan;

def day = GetDayofWeek(GetYYYYMMDD());

def q1;
def q3;
def m2;
if day == 1 then
  {
    if HOUR == 0 then
        {
            q1 = -0.35;        q3 = 0.273;        m2 = -0.045;
        }
    else if HOUR == 1 then
        {
            q1 = -0.26;        q3 = 0.27;        m2 = 0.0;
        }
    else if HOUR == 2 then
        {
            q1 = -0.18;        q3 = 0.23;        m2 = 0.02;
        }
    else if HOUR == 3 then
        {
            q1 = -0.25;        q3 = 0.17;        m2 = -0.02;
        }
    else if HOUR == 4 then
        {
            q1 = -0.27;        q3 = 0.32;        m2 = 0.025;
        }
    else if HOUR == 5 then
        {
            q1 = -0.33;        q3 = 0.4;        m2 = 0.05;
        }
    else if HOUR == 6 then
        {
            q1 = -0.4;        q3 = 0.442;        m2 = 0.07;
        }
    else if HOUR == 7 then
        {
            q1 = -0.36;        q3 = 0.39;        m2 = 0.06;
        }
    else if HOUR == 8 then
        {
            q1 = -0.23;        q3 = 0.41;        m2 = 0.1;
        }
    else if HOUR == 9 then
        {
            q1 = -0.28;        q3 = 0.27;        m2 = 0.01;
        }
    else if HOUR == 10 then
        {
            q1 = -0.31;        q3 = 0.21;        m2 = -0.05;
        }
    else if HOUR == 11 then
        {
            q1 = -0.16;        q3 = 0.21;        m2 = 0.03;
        }
    else if HOUR == 12 then
        {
            q1 = -0.07;        q3 = 0.16;        m2 = 0.03;
        }
    else if HOUR == 13 then
        {
            q1 = -0.09;        q3 = 0.103;        m2 = 0.0;
        }
    else if HOUR == 14 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 15 then
        {
            q1 = -0.07;        q3 = 0.06;        m2 = -0.01;
        }
    else if HOUR == 16 then
        {
            q1 = -0.1;        q3 = 0.16;        m2 = 0.01;
        }
    else if HOUR == 17 then
        {
            q1 = -0.14;        q3 = 0.19;        m2 = 0.03;
        }
    else if HOUR == 18 then
        {
            q1 = -0.15;        q3 = 0.17;        m2 = -0.01;
        }
    else if HOUR == 19 then
        {
            q1 = -0.11;        q3 = 0.11;        m2 = 0.0;
        }
    else if HOUR == 20 then
        {
            q1 = -0.08;        q3 = 0.07;        m2 = -0.01;
        }
    else if HOUR == 21 then
        {
            q1 = -0.11;        q3 = 0.13;        m2 = -0.01;
        }
    else if HOUR == 22 then
        {
            q1 = -0.15;        q3 = 0.19;        m2 = 0.03;
        }
    else
        {
            q1 = -0.27;        q3 = 0.22;        m2 = -0.01;
        }
    }
else if day == 2 then
  {
    if HOUR == 0 then
        {
            q1 = -0.32;        q3 = 0.24;        m2 = -0.02;
        }
    else if HOUR == 1 then
        {
            q1 = -0.33;        q3 = 0.25;        m2 = 0.0;
        }
    else if HOUR == 2 then
        {
            q1 = -0.22;        q3 = 0.24;        m2 = 0.015;
        }
    else if HOUR == 3 then
        {
            q1 = -0.24;        q3 = 0.172;        m2 = -0.04;
        }
    else if HOUR == 4 then
        {
            q1 = -0.18;        q3 = 0.32;        m2 = 0.05;
        }
    else if HOUR == 5 then
        {
            q1 = -0.35;        q3 = 0.43;        m2 = 0.04;
        }
    else if HOUR == 6 then
        {
            q1 = -0.49;        q3 = 0.5;        m2 = 0.01;
        }
    else if HOUR == 7 then
        {
            q1 = -0.48;        q3 = 0.37;        m2 = -0.06;
        }
    else if HOUR == 8 then
        {
            q1 = -0.36;        q3 = 0.3;        m2 = 0.01;
        }
    else if HOUR == 9 then
        {
            q1 = -0.273;        q3 = 0.28;        m2 = 0.03;
        }
    else if HOUR == 10 then
        {
            q1 = -0.38;        q3 = 0.17;        m2 = -0.1;
        }
    else if HOUR == 11 then
        {
            q1 = -0.16;        q3 = 0.16;        m2 = 0.01;
        }
    else if HOUR == 12 then
        {
            q1 = -0.11;        q3 = 0.16;        m2 = 0.02;
        }
    else if HOUR == 13 then
        {
            q1 = -0.11;        q3 = 0.17;        m2 = 0.03;
        }
    else if HOUR == 14 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 15 then
        {
            q1 = -0.07;        q3 = 0.08;        m2 = 0.01;
        }
    else if HOUR == 16 then
        {
            q1 = -0.11;        q3 = 0.15;        m2 = 0.03;
        }
    else if HOUR == 17 then
        {
            q1 = -0.16;        q3 = 0.14;        m2 = 0.0;
        }
    else if HOUR == 18 then
        {
            q1 = -0.15;        q3 = 0.13;        m2 = -0.01;
        }
    else if HOUR == 19 then
        {
            q1 = -0.12;        q3 = 0.09;        m2 = -0.01;
        }
    else if HOUR == 20 then
        {
            q1 = -0.09;        q3 = 0.06;        m2 = -0.01;
        }
    else if HOUR == 21 then
        {
            q1 = -0.11;        q3 = 0.12;        m2 = 0.01;
        }
    else if HOUR == 22 then
        {
            q1 = -0.16;        q3 = 0.14;        m2 = -0.02;
        }
    else
        {
            q1 = -0.22;        q3 = 0.25;        m2 = -0.01;
        }
    }
else if day == 3 then
  {
    if HOUR == 0 then
        {
            q1 = -0.263;        q3 = 0.32;        m2 = 0.02;
        }
    else if HOUR == 1 then
        {
            q1 = -0.27;        q3 = 0.29;        m2 = 0.0;
        }
    else if HOUR == 2 then
        {
            q1 = -0.27;        q3 = 0.23;        m2 = -0.015;
        }
    else if HOUR == 3 then
        {
            q1 = -0.2;        q3 = 0.25;        m2 = 0.02;
        }
    else if HOUR == 4 then
        {
            q1 = -0.23;        q3 = 0.28;        m2 = 0.02;
        }
    else if HOUR == 5 then
        {
            q1 = -0.44;        q3 = 0.36;        m2 = -0.04;
        }
    else if HOUR == 6 then
        {
            q1 = -0.52;        q3 = 0.32;        m2 = -0.1;
        }
    else if HOUR == 7 then
        {
            q1 = -0.47;        q3 = 0.52;        m2 = 0.03;
        }
    else if HOUR == 8 then
        {
            q1 = -0.34;        q3 = 0.41;        m2 = 0.06;
        }
    else if HOUR == 9 then
        {
            q1 = -0.3;        q3 = 0.34;        m2 = 0.01;
        }
    else if HOUR == 10 then
        {
            q1 = -0.362;        q3 = 0.27;        m2 = -0.03;
        }
    else if HOUR == 11 then
        {
            q1 = -0.22;        q3 = 0.18;        m2 = 0.01;
        }
    else if HOUR == 12 then
        {
            q1 = -0.16;        q3 = 0.09;        m2 = -0.04;
        }
    else if HOUR == 13 then
        {
            q1 = -0.1;        q3 = 0.09;        m2 = 0.0;
        }
    else if HOUR == 14 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 15 then
        {
            q1 = -0.06;        q3 = 0.08;        m2 = 0.01;
        }
    else if HOUR == 16 then
        {
            q1 = -0.12;        q3 = 0.12;        m2 = -0.01;
        }
    else if HOUR == 17 then
        {
            q1 = -0.12;        q3 = 0.21;        m2 = 0.04;
        }
    else if HOUR == 18 then
        {
            q1 = -0.15;        q3 = 0.12;        m2 = -0.01;
        }
    else if HOUR == 19 then
        {
            q1 = -0.08;        q3 = 0.12;        m2 = 0.01;
        }
    else if HOUR == 20 then
        {
            q1 = -0.1;        q3 = 0.07;        m2 = -0.01;
        }
    else if HOUR == 21 then
        {
            q1 = -0.12;        q3 = 0.11;        m2 = -0.01;
        }
    else if HOUR == 22 then
        {
            q1 = -0.16;        q3 = 0.17;        m2 = 0.0;
        }
    else
        {
            q1 = -0.24;        q3 = 0.2;        m2 = -0.01;
        }
    }
else if day == 4 then
  {
    if HOUR == 0 then
        {
            q1 = -0.272;        q3 = 0.28;        m2 = 0.03;
        }
    else if HOUR == 1 then
        {
            q1 = -0.233;        q3 = 0.3;        m2 = 0.03;
        }
    else if HOUR == 2 then
        {
            q1 = -0.24;        q3 = 0.2;        m2 = -0.005;
        }
    else if HOUR == 3 then
        {
            q1 = -0.2;        q3 = 0.23;        m2 = 0.02;
        }
    else if HOUR == 4 then
        {
            q1 = -0.2;        q3 = 0.32;        m2 = 0.06;
        }
    else if HOUR == 5 then
        {
            q1 = -0.45;        q3 = 0.473;        m2 = 0.03;
        }
    else if HOUR == 6 then
        {
            q1 = -0.47;        q3 = 0.41;        m2 = 0.04;
        }
    else if HOUR == 7 then
        {
            q1 = -0.413;        q3 = 0.48;        m2 = 0.06;
        }
    else if HOUR == 8 then
        {
            q1 = -0.33;        q3 = 0.353;        m2 = -0.01;
        }
    else if HOUR == 9 then
        {
            q1 = -0.31;        q3 = 0.32;        m2 = 0.01;
        }
    else if HOUR == 10 then
        {
            q1 = -0.42;        q3 = 0.17;        m2 = -0.09;
        }
    else if HOUR == 11 then
        {
            q1 = -0.19;        q3 = 0.17;        m2 = -0.01;
        }
    else if HOUR == 12 then
        {
            q1 = -0.1;        q3 = 0.13;        m2 = 0.01;
        }
    else if HOUR == 13 then
        {
            q1 = -0.07;        q3 = 0.13;        m2 = 0.02;
        }
    else if HOUR == 14 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 15 then
        {
            q1 = -0.08;        q3 = 0.08;        m2 = 0.0;
        }
    else if HOUR == 16 then
        {
            q1 = -0.1;        q3 = 0.19;        m2 = 0.03;
        }
    else if HOUR == 17 then
        {
            q1 = -0.11;        q3 = 0.18;        m2 = 0.03;
        }
    else if HOUR == 18 then
        {
            q1 = -0.14;        q3 = 0.18;        m2 = 0.02;
        }
    else if HOUR == 19 then
        {
            q1 = -0.12;        q3 = 0.12;        m2 = -0.01;
        }
    else if HOUR == 20 then
        {
            q1 = -0.08;        q3 = 0.09;        m2 = 0.0;
        }
    else if HOUR == 21 then
        {
            q1 = -0.09;        q3 = 0.12;        m2 = 0.02;
        }
    else if HOUR == 22 then
        {
            q1 = -0.12;        q3 = 0.18;        m2 = 0.03;
        }
    else
        {
            q1 = -0.21;        q3 = 0.23;        m2 = 0.02;
        }
    }
else if day == 5 then
  {
    if HOUR == 0 then
        {
            q1 = -0.24;        q3 = 0.33;        m2 = 0.06;
        }
    else if HOUR == 1 then
        {
            q1 = -0.18;        q3 = 0.37;        m2 = 0.1;
        }
    else if HOUR == 2 then
        {
            q1 = -0.19;        q3 = 0.32;        m2 = 0.07;
        }
    else if HOUR == 3 then
        {
            q1 = -0.22;        q3 = 0.21;        m2 = 0.01;
        }
    else if HOUR == 4 then
        {
            q1 = -0.26;        q3 = 0.25;        m2 = 0.01;
        }
    else if HOUR == 5 then
        {
            q1 = -0.45;        q3 = 0.41;        m2 = 0.01;
        }
    else if HOUR == 6 then
        {
            q1 = -0.29;        q3 = 0.57;        m2 = 0.14;
        }
    else if HOUR == 7 then
        {
            q1 = -0.32;        q3 = 0.42;        m2 = 0.04;
        }
    else if HOUR == 8 then
        {
            q1 = -0.33;        q3 = 0.31;        m2 = 0.03;
        }
    else if HOUR == 9 then
        {
            q1 = -0.37;        q3 = 0.22;        m2 = -0.06;
        }
    else if HOUR == 10 then
        {
            q1 = -0.2;        q3 = 0.32;        m2 = 0.07;
        }
    else if HOUR == 11 then
        {
            q1 = -0.11;        q3 = 0.22;        m2 = 0.04;
        }
    else if HOUR == 12 then
        {
            q1 = -0.1;        q3 = 0.12;        m2 = 0.01;
        }
    else if HOUR == 13 then
        {
            q1 = -0.29;        q3 = 0.4;        m2 = 0.02;
        }
    else if HOUR == 14 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 15 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 16 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 17 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 18 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 19 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 20 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 21 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 22 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    }
else if day == 7 then
  {
    if HOUR == 0 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 1 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 2 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 3 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 4 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 5 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 6 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 7 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 8 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 9 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 10 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 11 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 12 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 13 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 14 then
        {
            q1 = 0.0;        q3 = 0.0;        m2 = 0.0;
        }
    else if HOUR == 15 then
        {
            q1 = -0.13;        q3 = 0.11;        m2 = -0.01;
        }
    else if HOUR == 16 then
        {
            q1 = -0.26;        q3 = 0.09;        m2 = -0.06;
        }
    else if HOUR == 17 then
        {
            q1 = -0.3;        q3 = 0.15;        m2 = -0.07;
        }
    else if HOUR == 18 then
        {
            q1 = -0.2;        q3 = 0.14;        m2 = -0.04;
        }
    else if HOUR == 19 then
        {
            q1 = -0.13;        q3 = 0.1;        m2 = -0.02;
        }
    else if HOUR == 20 then
        {
            q1 = -0.12;        q3 = 0.05;        m2 = -0.02;
        }
    else if HOUR == 21 then
        {
            q1 = -0.14;        q3 = 0.1;        m2 = -0.01;
        }
    else if HOUR == 22 then
        {
            q1 = -0.17;        q3 = 0.16;        m2 = 0.0;
        }
    else
        {
            q1 = -0.25;        q3 = 0.22;        m2 = 0.01;
        }
    }
    else
        {
            q1 = double.nan;
            q3 = double.nan;
            m2 = double.nan;
        }

def midline = hl2(period = AggregationPeriod.HOUR)[1];
def median = hl2(period = AggregationPeriod.HOUR)[1] + m2;
def upper = median + (q3);
def lower = median + (q1);

plot c = midline;
c.setStyle(CURve.SHORT_DASH);
c.setDefaultColor(getColor(7));

plot median_line = median[barsPerHour];
median_line.SetPaintingStrategy(PaintingStrategy.DASHES);
median_line.SetDefaultColor(getColor(3));
plot expected_upper = upper[barsPerHour];
expected_upper.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
expected_upper.SetDefaultColor(getColor(1));
plot expected_lower = lower[barsPerHour];
expected_lower.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
expected_lower.SetDefaultColor(getColor(5));

addcloud(expected_upper, expected_lower, color.white, color.white);
def upside = (expected_upper[(-1 * barsPerHour)] - close);
def downside = (close - expected_lower[(-1 * barsPerHour)]);
addLabel(yes, "current upside: " + upside + "  current downside: " + downside, if upside > downside then color.dark_green else if downside > upside then color.dark_red else color.dark_gray);

def dist_to_median = (median_line[(-1 * barsPerHour)] - close);
addLabel(yes, "Distance to Median: " + dist_to_median,
if dist_to_median > 5 then color.green
else if dist_to_median > 1 then color.dark_green
else if dist_to_median < -5 then color.red
else if dist_to_median < -1 then color.dark_red
else color.gray);

It's a monster.

-mashume
 

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
330 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top