NexusFi: Find Your Edge


Home Menu

 





Creating custom conditional orders using thinkscript


Discussion in ThinkOrSwim

Updated
    1. trending_up 3,441 views
    2. thumb_up 0 thanks given
    3. group 2 followers
    1. forum 1 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
skivis
Taipei, Taiwan
 
Posts: 1 since May 2019
Thanks Given: 0
Thanks Received: 0

Hi guys,

I am trying to create a custom conditional order using thinkscript. The idea is to sell an existing positon if the latest closing price is lower than the lowest price in the previous bar.

The code I currently have is pretty straightforward:
close < low from 1 bar ago

It appears that if I don't define the aggregation period, the system uses daily aggregation per bar. However, I would like to be able use this conditional order in other time frames such as 15 minute, 30 minute...etc., but I'm confused about how to set the aggregation period.

Using 15 minute as the aggregation period as an example, I'm assuming I have to put the code "AggregationPeriod.FIFTEEN_MIN" somewhere, but I keep getting errors in the thinkscript editor.

Any help would be appreciated, thanks.


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Strike Pause Holds, Oil Erases Monday Spike -- May CPI W …
Traders Hideout
Election Sunday Resolves: Peru Heads to Runoff at 42pct, …
Prediction Markets & Event Contracts
CME Cuts Precious Metals Margins Up to 21% Starting Toda …
Commodities
Post-Summit Market Verdict: ES -1%, NQ -1.5%, 10-Year Yi …
Traders Hideout
Rubios Good News Within Hours and the 30-Day Math: Why H …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Big Mike in Ecuador
205 thanks
Sober Journey With S&P
21 thanks
30 Sessions
20 thanks
Volume Indicators
8 thanks
Thanks Mike. Godspeed.
7 thanks
  #2 (permalink)
 kjhosken 
Seattle, WA/USA
 
Experience: Intermediate
Platform: TOS, TS
Trading: Forex, crude
Posts: 96 since Sep 2016
Thanks Given: 7
Thanks Received: 35

The default time is whatever your chart is, unless this is a scan, in which case, yes the default is daily. You can customize scans to use timeframes other than daily without writing script for it, but the data is wonky, so I'd caution against it if you need it for reliability. But back to how to use aggregation period, here is an example:

 
Code
input aggperiod = aggregationPeriod.FIFTEEN_MIN;

def c = close(period = aggperiod);
def l = low(period = aggperiod);
def condition = c < l[1]; 

addOrder(OrderType.Sell_to_close, condition);
One other thing to note on using the aggregation function you must use a chart in a lower time frame than what your calling for (you can't aggregate a 15 minute candle from a daily, for instance, but you can aggregate a daily from many 15s).


skivis View Post
Hi guys,

I am trying to create a custom conditional order using thinkscript. The idea is to sell an existing positon if the latest closing price is lower than the lowest price in the previous bar.

The code I currently have is pretty straightforward:
close < low from 1 bar ago

It appears that if I don't define the aggregation period, the system uses daily aggregation per bar. However, I would like to be able use this conditional order in other time frames such as 15 minute, 30 minute...etc., but I'm confused about how to set the aggregation period.

Using 15 minute as the aggregation period as an example, I'm assuming I have to put the code "AggregationPeriod.FIFTEEN_MIN" somewhere, but I keep getting errors in the thinkscript editor.

Any help would be appreciated, thanks.


Follow me on X Reply With Quote




Last Updated on June 22, 2019


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts