Scalping ORBs For ThinkOrSwim

tc815

New member
Hello everyone!!! Today i would like to share what has made me profitable in the stock market Smalls caps to Mid caps... I have had entire months green NOT a single red day if you follow what i will tell you...

1. Whole and half numbers are key areas like 1.50 2 2.50 $3 these are physiological areas where stocks top tick or go over just a bit and then come back down where you can then cover for the wash...

2. This is a SCALPING strategy NOT trend trading you are in and out short the pop cover the drop or buy the dip sell the rip.

3. We use whole and half numbers with a nice spike or huge up move within 1-2 BIG candles with volume low floats... into these areas NOT GRINDS we short then cover into the wash for 10-20 cents maybe more

4. I also use Time/Sales and level 2 you MUST have a fast tape/time & sales we must see speed on the time and sales with green green green prints then once it runs out of fuel you will see the tape pause and will see red/white prints coming through this is what we want to see along with big sellers on the level 2 again we short the pop cover the drop vise versa for long we want a huge drop and want to see the time/sales pause and want to see it speed up with green prints along with big buyers on the level 2 if you short at 5.50 and it goes past we will look to add the same share size at $6 that will give us a 5.75 average if i add to the trade i will look to cut it off for break even or a small loss YOU MUST have a big enough account to add or just get in small size...

5. I promise you if you follow this to the T the right way you will have a 90% + win rate because i do this has what worked for me i can not trade trends so i trade the pops and the drops quick in and out you short at 5.50 and it drops to 5.25 1000 shares that is $250 easy money trading does not have to be hard people make it hard..

6. What to do if the trade goes against you? I follow what i call the 3 minute rule if the stock does not do what i want in 3 min i cut it off...

7. Hope some of you can follow this and start becoming consistent i have tested so many strategy's and they did not work for me anddd i did not have a high win rate this is what works for me any questions please ask also i will post a really good script below to go with this strategy as confirmation

SCRIPT NO REPAINT PS: DO NOT USE WITH GRINDS ONLY POPS.

Code:
def agg=aggregationPeriod.FIVE_MIN;
def na = Double.NaN;
input ORBegin = 930;
input OREnd = 1600;
def ORActive = if SecondsTillTime(OREnd) > 0 and SecondsTillTime(ORBegin) <= 0 then 1 else 0;
def today = GetDay() == GetLastDay();
def numDevDn = -2.0;
def numDevUp = 2.0;
def timeFrame = 3 ;

def cap = getAggregationPeriod();
def errorInAggregation =
    timeFrame == 3 and cap >= AggregationPeriod.WEEK or
    timeFrame == 3 and cap >= AggregationPeriod.MONTH;
assert(!errorInAggregation, "timeFrame should be not less than current chart aggregation period");

def yyyyMmDd = getYyyyMmDd();
def periodIndx;
#switch (timeFrame) {
#case DAY:
    periodIndx = yyyyMmDd;
#}
#def isPeriodRolled = compoundValue(1, periodIndx != periodIndx[1], yes);

def volumeSum;
def volumeVwapSum;
def volumeVwap2Sum;

#if (isPeriodRolled) {
    volumeSum = volume;
    volumeVwapSum = volume * vwap;
    volumeVwap2Sum = volume * Sqr(vwap);

def price = volumeVwapSum / volumeSum;
def deviation = Sqrt(Max(volumeVwap2Sum / volumeSum - Sqr(price), 0));

input filterfrom_1_20= 10;
def Sover_bought = 80;
def Sover_sold = 20;
def SKPeriod = 14;
def SDPeriod = 3;
def SpriceH = high;
def SpriceL = low;
def SpriceC = close;
def SaverageType = AverageType.SIMPLE;

def SlowK = reference StochasticFull(Sover_bought, Sover_sold, SKPeriod, SDPeriod, SpriceH, SpriceL, SpriceC, 3, if (SaverageType == 1) then AverageType.SIMPLE else AverageType.EXPONENTIAL).FullK;
def SlowD = reference StochasticFull(Sover_bought, Sover_sold, SKPeriod, SDPeriod, SpriceH, SpriceL, SpriceC, 3, if (SaverageType == 1) then AverageType.SIMPLE else AverageType.EXPONENTIAL).FullD;
def SOverBought = Sover_bought;
def SOverSold = Sover_sold;

#-----------------------------------------------------MACD--------------------------------
def MfastLength = 12;
def MslowLength = 26;
def MACDLength = 9;
def MaverageType = AverageType.EXPONENTIAL;
def MshowBreakoutSignals = no;

def Value = MovingAverage(MaverageType, close, MfastLength) - MovingAverage(MaverageType, close, MslowLength);
def Avg = MovingAverage(MaverageType, Value, MACDLength);

def Diff = Value - Avg;
def ZeroLine = 0;
def hod = if today and hod[1] == 0  then Value else if ORActive and today and Value > hod[1] then Value else hod[1];
def lod = if today and lod[1] == 0  then Value else if ORActive and today and Value < lod[1] then Value else lod[1];

def prctcalc = (filterfrom_1_20/ 100);
def separation = (hod - lod) * prctcalc;
#addlabel(yes,separation,color.green);
#addlabel(yes,prctcalc);
def conditionlong1 = SlowK crosses above SlowD and SlowK < Sover_sold and SlowD < Sover_sold;
def conditionlong2 = Value < 0 and Avg < 0 and Value - Avg > separation or Value < 0 and Avg < 0 and Value - Avg < -separation;

def conditionshort1 = SlowK crosses below SlowD and SlowK > Sover_bought and SlowD > Sover_bought;
def conditionshort2 = Value > 0 and Avg > 0 and Value - Avg > separation or Value > 0 and Avg > 0 and Value - Avg < -separation;
def confirmation = Value crosses below Avg;
plot long = if SecondsFromTime(ORBegin) > 0  and SecondsFromTime(OREnd) < 0 and conditionlong1 and conditionlong2 then low else  Double.NaN;
long.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
long.SetDefaultColor(Color.GREEN);
plot short =  if SecondsFromTime(ORBegin) > 0  and SecondsFromTime(OREnd) < 0 and  conditionshort1 and conditionshort2 then high else Double.NaN;
short.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);
short.SetDefaultColor(Color.RED);
 
Last edited by a moderator:
Hello everyone!!! Today i would like to share what has made me profitable in the stock market Smalls caps to Mid caps... I have had entire months green NOT a single red day if you follow what i will tell you...

1. Whole and half numbers are key areas like 1.50 2 2.50 $3 these are physiological areas where stocks top tick or go over just a bit and then come back down where you can then cover for the wash...

2. This is a SCALPING strategy NOT trend trading you are in and out short the pop cover the drop or buy the dip sell the rip.

3. We use whole and half numbers with a nice spike or huge up move within 1-2 BIG candles with volume low floats... into these areas NOT GRINDS we short then cover into the wash for 10-20 cents maybe more

4. I also use Time/Sales and level 2 you MUST have a fast tape/time & sales we must see speed on the time and sales with green green green prints then once it runs out of fuel you will see the tape pause and will see red/white prints coming through this is what we want to see along with big sellers on the level 2 again we short the pop cover the drop vise versa for long we want a huge drop and want to see the time/sales pause and want to see it speed up with green prints along with big buyers on the level 2 if you short at 5.50 and it goes past we will look to add the same share size at $6 that will give us a 5.75 average if i add to the trade i will look to cut it off for break even or a small loss YOU MUST have a big enough account to add or just get in small size...

5. I promise you if you follow this to the T the right way you will have a 90% + win rate because i do this has what worked for me i can not trade trends so i trade the pops and the drops quick in and out you short at 5.50 and it drops to 5.25 1000 shares that is $250 easy money trading does not have to be hard people make it hard..

6. What to do if the trade goes against you? I follow what i call the 3 minute rule if the stock does not do what i want in 3 min i cut it off...

7. Hope some of you can follow this and start becoming consistent i have tested so many strategy's and they did not work for me anddd i did not have a high win rate this is what works for me any questions please ask also i will post a really good script below to go with this strategy as confirmation

SCRIPT NO REPAINT PS: DO NOT USE WITH GRINDS ONLY POPS.

Code:
def agg=aggregationPeriod.FIVE_MIN;
def na = Double.NaN;
input ORBegin = 930;
input OREnd = 1600;
def ORActive = if SecondsTillTime(OREnd) > 0 and SecondsTillTime(ORBegin) <= 0 then 1 else 0;
def today = GetDay() == GetLastDay();
def numDevDn = -2.0;
def numDevUp = 2.0;
def timeFrame = 3 ;

def cap = getAggregationPeriod();
def errorInAggregation =
    timeFrame == 3 and cap >= AggregationPeriod.WEEK or
    timeFrame == 3 and cap >= AggregationPeriod.MONTH;
assert(!errorInAggregation, "timeFrame should be not less than current chart aggregation period");

def yyyyMmDd = getYyyyMmDd();
def periodIndx;
#switch (timeFrame) {
#case DAY:
    periodIndx = yyyyMmDd;
#}
#def isPeriodRolled = compoundValue(1, periodIndx != periodIndx[1], yes);

def volumeSum;
def volumeVwapSum;
def volumeVwap2Sum;

#if (isPeriodRolled) {
    volumeSum = volume;
    volumeVwapSum = volume * vwap;
    volumeVwap2Sum = volume * Sqr(vwap);

def price = volumeVwapSum / volumeSum;
def deviation = Sqrt(Max(volumeVwap2Sum / volumeSum - Sqr(price), 0));

input filterfrom_1_20= 10;
def Sover_bought = 80;
def Sover_sold = 20;
def SKPeriod = 14;
def SDPeriod = 3;
def SpriceH = high;
def SpriceL = low;
def SpriceC = close;
def SaverageType = AverageType.SIMPLE;

def SlowK = reference StochasticFull(Sover_bought, Sover_sold, SKPeriod, SDPeriod, SpriceH, SpriceL, SpriceC, 3, if (SaverageType == 1) then AverageType.SIMPLE else AverageType.EXPONENTIAL).FullK;
def SlowD = reference StochasticFull(Sover_bought, Sover_sold, SKPeriod, SDPeriod, SpriceH, SpriceL, SpriceC, 3, if (SaverageType == 1) then AverageType.SIMPLE else AverageType.EXPONENTIAL).FullD;
def SOverBought = Sover_bought;
def SOverSold = Sover_sold;

#-----------------------------------------------------MACD--------------------------------
def MfastLength = 12;
def MslowLength = 26;
def MACDLength = 9;
def MaverageType = AverageType.EXPONENTIAL;
def MshowBreakoutSignals = no;

def Value = MovingAverage(MaverageType, close, MfastLength) - MovingAverage(MaverageType, close, MslowLength);
def Avg = MovingAverage(MaverageType, Value, MACDLength);

def Diff = Value - Avg;
def ZeroLine = 0;
def hod = if today and hod[1] == 0  then Value else if ORActive and today and Value > hod[1] then Value else hod[1];
def lod = if today and lod[1] == 0  then Value else if ORActive and today and Value < lod[1] then Value else lod[1];

def prctcalc = (filterfrom_1_20/ 100);
def separation = (hod - lod) * prctcalc;
#addlabel(yes,separation,color.green);
#addlabel(yes,prctcalc);
def conditionlong1 = SlowK crosses above SlowD and SlowK < Sover_sold and SlowD < Sover_sold;
def conditionlong2 = Value < 0 and Avg < 0 and Value - Avg > separation or Value < 0 and Avg < 0 and Value - Avg < -separation;

def conditionshort1 = SlowK crosses below SlowD and SlowK > Sover_bought and SlowD > Sover_bought;
def conditionshort2 = Value > 0 and Avg > 0 and Value - Avg > separation or Value > 0 and Avg > 0 and Value - Avg < -separation;
def confirmation = Value crosses below Avg;
plot long = if SecondsFromTime(ORBegin) > 0  and SecondsFromTime(OREnd) < 0 and conditionlong1 and conditionlong2 then low else  Double.NaN;
long.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
long.SetDefaultColor(Color.GREEN);
plot short =  if SecondsFromTime(ORBegin) > 0  and SecondsFromTime(OREnd) < 0 and  conditionshort1 and conditionshort2 then high else Double.NaN;
short.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);
short.SetDefaultColor(Color.RED);
Hello everyone!!! Today i would like to share what has made me profitable in the stock market Smalls caps to Mid caps... I have had entire months green NOT a single red day if you follow what i will tell you...

1. Whole and half numbers are key areas like 1.50 2 2.50 $3 these are physiological areas where stocks top tick or go over just a bit and then come back down where you can then cover for the wash...

2. This is a SCALPING strategy NOT trend trading you are in and out short the pop cover the drop or buy the dip sell the rip.

3. We use whole and half numbers with a nice spike or huge up move within 1-2 BIG candles with volume low floats... into these areas NOT GRINDS we short then cover into the wash for 10-20 cents maybe more

4. I also use Time/Sales and level 2 you MUST have a fast tape/time & sales we must see speed on the time and sales with green green green prints then once it runs out of fuel you will see the tape pause and will see red/white prints coming through this is what we want to see along with big sellers on the level 2 again we short the pop cover the drop vise versa for long we want a huge drop and want to see the time/sales pause and want to see it speed up with green prints along with big buyers on the level 2 if you short at 5.50 and it goes past we will look to add the same share size at $6 that will give us a 5.75 average if i add to the trade i will look to cut it off for break even or a small loss YOU MUST have a big enough account to add or just get in small size...

5. I promise you if you follow this to the T the right way you will have a 90% + win rate because i do this has what worked for me i can not trade trends so i trade the pops and the drops quick in and out you short at 5.50 and it drops to 5.25 1000 shares that is $250 easy money trading does not have to be hard people make it hard..

6. What to do if the trade goes against you? I follow what i call the 3 minute rule if the stock does not do what i want in 3 min i cut it off...

7. Hope some of you can follow this and start becoming consistent i have tested so many strategy's and they did not work for me anddd i did not have a high win rate this is what works for me any questions please ask also i will post a really good script below to go with this strategy as confirmation

SCRIPT NO REPAINT PS: DO NOT USE WITH GRINDS ONLY POPS.

Code:
def agg=aggregationPeriod.FIVE_MIN;
def na = Double.NaN;
input ORBegin = 930;
input OREnd = 1600;
def ORActive = if SecondsTillTime(OREnd) > 0 and SecondsTillTime(ORBegin) <= 0 then 1 else 0;
def today = GetDay() == GetLastDay();
def numDevDn = -2.0;
def numDevUp = 2.0;
def timeFrame = 3 ;

def cap = getAggregationPeriod();
def errorInAggregation =
    timeFrame == 3 and cap >= AggregationPeriod.WEEK or
    timeFrame == 3 and cap >= AggregationPeriod.MONTH;
assert(!errorInAggregation, "timeFrame should be not less than current chart aggregation period");

def yyyyMmDd = getYyyyMmDd();
def periodIndx;
#switch (timeFrame) {
#case DAY:
    periodIndx = yyyyMmDd;
#}
#def isPeriodRolled = compoundValue(1, periodIndx != periodIndx[1], yes);

def volumeSum;
def volumeVwapSum;
def volumeVwap2Sum;

#if (isPeriodRolled) {
    volumeSum = volume;
    volumeVwapSum = volume * vwap;
    volumeVwap2Sum = volume * Sqr(vwap);

def price = volumeVwapSum / volumeSum;
def deviation = Sqrt(Max(volumeVwap2Sum / volumeSum - Sqr(price), 0));

input filterfrom_1_20= 10;
def Sover_bought = 80;
def Sover_sold = 20;
def SKPeriod = 14;
def SDPeriod = 3;
def SpriceH = high;
def SpriceL = low;
def SpriceC = close;
def SaverageType = AverageType.SIMPLE;

def SlowK = reference StochasticFull(Sover_bought, Sover_sold, SKPeriod, SDPeriod, SpriceH, SpriceL, SpriceC, 3, if (SaverageType == 1) then AverageType.SIMPLE else AverageType.EXPONENTIAL).FullK;
def SlowD = reference StochasticFull(Sover_bought, Sover_sold, SKPeriod, SDPeriod, SpriceH, SpriceL, SpriceC, 3, if (SaverageType == 1) then AverageType.SIMPLE else AverageType.EXPONENTIAL).FullD;
def SOverBought = Sover_bought;
def SOverSold = Sover_sold;

#-----------------------------------------------------MACD--------------------------------
def MfastLength = 12;
def MslowLength = 26;
def MACDLength = 9;
def MaverageType = AverageType.EXPONENTIAL;
def MshowBreakoutSignals = no;

def Value = MovingAverage(MaverageType, close, MfastLength) - MovingAverage(MaverageType, close, MslowLength);
def Avg = MovingAverage(MaverageType, Value, MACDLength);

def Diff = Value - Avg;
def ZeroLine = 0;
def hod = if today and hod[1] == 0  then Value else if ORActive and today and Value > hod[1] then Value else hod[1];
def lod = if today and lod[1] == 0  then Value else if ORActive and today and Value < lod[1] then Value else lod[1];

def prctcalc = (filterfrom_1_20/ 100);
def separation = (hod - lod) * prctcalc;
#addlabel(yes,separation,color.green);
#addlabel(yes,prctcalc);
def conditionlong1 = SlowK crosses above SlowD and SlowK < Sover_sold and SlowD < Sover_sold;
def conditionlong2 = Value < 0 and Avg < 0 and Value - Avg > separation or Value < 0 and Avg < 0 and Value - Avg < -separation;

def conditionshort1 = SlowK crosses below SlowD and SlowK > Sover_bought and SlowD > Sover_bought;
def conditionshort2 = Value > 0 and Avg > 0 and Value - Avg > separation or Value > 0 and Avg > 0 and Value - Avg < -separation;
def confirmation = Value crosses below Avg;
plot long = if SecondsFromTime(ORBegin) > 0  and SecondsFromTime(OREnd) < 0 and conditionlong1 and conditionlong2 then low else  Double.NaN;
long.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
long.SetDefaultColor(Color.GREEN);
plot short =  if SecondsFromTime(ORBegin) > 0  and SecondsFromTime(OREnd) < 0 and  conditionshort1 and conditionshort2 then high else Double.NaN;
short.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);
short.SetDefaultColor(Color.RED);
TC815... Could you please elaborate more on your strategy? could you give some examples? Thanks
 
TC815... Could you please elaborate more on your strategy? could you give some examples? Thanks
Did you know that clicking on a member's name will allow you to see when a member was last seen on the uTS forum? @tc815 has not been seen in a while. :(
 

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
388 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