Assumptions:
1)Each tick is .01 and it a 50/50 shot to do up vs down.
Problem 1.
1) If the average range is .25 for a 2 minute time span from 10:30 to 10:32, what is the average range from say 10:31 to 10:32, or ultimately I'd like to create an equation to return the average range from a time interval within a larger time interval that has a known average range.
New_AR = CalcTheAR(int SecondsRemaining, int Seconds, double AR){
}
So say I'd like to know the average range from 10:30:45 to 10:32.
My imputs would be...
New_ATR = CalcTheATR(75, 120, .25){
}
I'm really having a hard time coming up with an equation for this.
Problem 2.
If the average range from 10:30 to 10:32 is .25. Say at 10:30:00 the price is 60.00. I would like to know the percentage of the time price reaches 60.50 or greater from 10:30 to 10:32, or really an equation to find this out.
Percent_Reaching = CalcThePercent(double StartPrice, double AR, double Target){
}
or...
Percent_Reaching = CalcThePercent(60.00, .25, 60.50){
}
1)Each tick is .01 and it a 50/50 shot to do up vs down.
Problem 1.
1) If the average range is .25 for a 2 minute time span from 10:30 to 10:32, what is the average range from say 10:31 to 10:32, or ultimately I'd like to create an equation to return the average range from a time interval within a larger time interval that has a known average range.
New_AR = CalcTheAR(int SecondsRemaining, int Seconds, double AR){
}
So say I'd like to know the average range from 10:30:45 to 10:32.
My imputs would be...
New_ATR = CalcTheATR(75, 120, .25){
}
I'm really having a hard time coming up with an equation for this.
Problem 2.
If the average range from 10:30 to 10:32 is .25. Say at 10:30:00 the price is 60.00. I would like to know the percentage of the time price reaches 60.50 or greater from 10:30 to 10:32, or really an equation to find this out.
Percent_Reaching = CalcThePercent(double StartPrice, double AR, double Target){
}
or...
Percent_Reaching = CalcThePercent(60.00, .25, 60.50){
}