Legging Out - Backtesting Strategy

SeanGMT

New member
I have a strategy that is working well and I believe would do much better if I could leg out. Is this possible in a thinkscript strategy?

Example;

Code:
### Condition is met - Enter with 10 contracts
OrderType(BUY_TO_OPEN, Condition is true, OPEN[-1], trade size = 10, name = "BUY LONG");

### First take profit level is hit - Close half of the position
OrderType(SELL_TO_CLOSE, Close above profit level # 1 is true, OPEN[-1], trade size = 5, name = "Sell half");

### Second take profit is hit - Close remaining contracts
OrderType(SELL_TO_CLOSE, Close above profit level #2 is true, OPEN[-1], trade size = 5, name "Close Position");

I have tried variations of SELL_AUTO and SELL_TO_CLOSE with no luck. I am able to add contracts to the BUY side (Start with 10, add xxx contracts as many times as I want) but I am not able to split the close side. Any assistance would be greatly appreciated
 
Last edited by a moderator:
I have a strategy that is working well and I believe would do much better if I could leg out. Is this possible in a thinkscript strategy?

Example;

Code:
### Condition is met - Enter with 10 contracts
OrderType(BUY_TO_OPEN, Condition is true, OPEN[-1], trade size = 10, name = "BUY LONG");

### First take profit level is hit - Close half of the position
OrderType(SELL_TO_CLOSE, Close above profit level # 1 is true, OPEN[-1], trade size = 5, name = "Sell half");

### Second take profit is hit - Close remaining contracts
OrderType(SELL_TO_CLOSE, Close above profit level #2 is true, OPEN[-1], trade size = 5, name "Close Position");

I have tried variations of SELL_AUTO and SELL_TO_CLOSE with no luck. I am able to add contracts to the BUY side (Start with 10, add xxx contracts as many times as I want) but I am not able to split the close side. Any assistance would be greatly appreciated

i thought this might help, but i don't think so. i changed my setting from 1 to 3. but the 2nd sell quantity is not right. it is the same as the buy quantity, like it opened a new short position.

change max order quantity
https://usethinkscript.com/threads/is-it-possible-to-place-two-addorders.4952/#post-45891


your code has some errors,
it is addorder( not ordertype(

https://toslc.thinkorswim.com/center/reference/thinkScript/Functions/Others/AddOrder


modified code for testing
Code:
#strat_partial_sells

#https://usethinkscript.com/threads/legging-out-backtesting-strategy.21305/
#Legging Out - Backtesting Strategy
#SeanGMT  8/4
#1
#I have a strategy that is working well and I believe would do much better if I could leg out. Is this possible in a thinkscript strategy?

#I have tried variations of SELL_AUTO and SELL_TO_CLOSE with no luck. I am able to add contracts to the BUY side (Start with 10, add xxx contracts as many times as I want) but I am not able to split the close side. 


def na = Double.NaN;
def bn = BarNumber();

input buy1_qty = 10;
input sell1_qty = 5;
input sell2_qty = 5;

def buy1 = bn == 100;
def sell1 = bn == 120;
def sell2 = bn == 140;

### Condition is met - Enter with 10 contracts
addorder(type = OrderType.BUY_TO_OPEN, condition = buy1, price = OPEN[-1], tradesize = buy1_qty , name = "BUY LONG");

### First take profit level is hit - Close half of the position
addorder(type = OrderType.SELL_auto, condition = sell1, price = OPEN[-1], tradesize = sell1_qty, name = "Sell half");

### Second take profit is hit - Close remaining contracts
addorder(type = OrderType.SELL_auto, condition = sell2, price = OPEN[-1], tradesize = sell2_qty, name = "Close Position");


#---------------------
#AddOrder ( type , condition , price , tradeSize , tickColor , arrowColor , name ); 
#AddOrder(OrderType.BUY_TO_OPEN, BuySignal, price = open[-1], tradeSize = shares, tickcolor = Color.GREEN, arrowcolor = Color.GREEN, name = "BUY" );
#AddOrder(OrderType.SELL_TO_CLOSE, SellSignal, price = open[-1], tradeSize = shares[1], tickcolor = Color.RED, arrowcolor = color.red, name = "SELL");
#
 

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