NexusFi: Find Your Edge


Home Menu

 





Creating custom conditional orders using thinkscript


Discussion in ThinkOrSwim

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




 
Search this Thread

Creating custom conditional orders using thinkscript

  #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?
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
MC PL editor upgrade
MultiCharts
REcommedations for programming help
Sierra Chart
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
48 thanks
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Tao te Trade: way of the WLD
26 thanks
Bigger Wins or Fewer Losses?
24 thanks
GFIs1 1 DAX trade per day journal
20 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 Twitter Reply With Quote




Last Updated on June 22, 2019


© 2024 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 - Privacy Policy - Downloads - Top
no new posts