How do I use getAggregationPeriod() as a default input

SoCal Danny

New member
I would like to try have a script where the user gets to choose the aggregation period, but have the current aggregation period as default.

I tried this:

def aggPeriod = GetAggregationPeriod() ; ## or whatever

input AggregationPeriod = aggPeriod;


But I get an error. It seems that "input" will not accept variables.

Is there a way that I can do this?

Thanks!
 
Solution
I would like to try have a script where the user gets to choose the aggregation period, but have the current aggregation period as default.

I tried this:

def aggPeriod = GetAggregationPeriod() ; ## or whatever

input AggregationPeriod = aggPeriod;


But I get an error. It seems that "input" will not accept variables.

Is there a way that I can do this?

Thanks!

this plots an average line, using an aggregation time
can pick agg type, custom agg or chart agg
can pick the custom agg.


Code:
#choose_agg
#https://usethinkscript.com/threads/how-do-i-use-getaggregationperiod-as-a-default-input.21227/
#How do I use getAggregationPeriod() as a default input

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

def chartagg =...
I would like to try have a script where the user gets to choose the aggregation period, but have the current aggregation period as default.

I tried this:

def aggPeriod = GetAggregationPeriod() ; ## or whatever

input AggregationPeriod = aggPeriod;


But I get an error. It seems that "input" will not accept variables.

Is there a way that I can do this?

Thanks!

this plots an average line, using an aggregation time
can pick agg type, custom agg or chart agg
can pick the custom agg.


Code:
#choose_agg
#https://usethinkscript.com/threads/how-do-i-use-getaggregationperiod-as-a-default-input.21227/
#How do I use getAggregationPeriod() as a default input

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

def chartagg = GetAggregationPeriod();
def chartmin = chartagg / (1000 * 60);

# custom agg
input agg_cus = AggregationPeriod.HOUR;

# verify chosen agg is valid. if not then set it to chart agg
def agg2;
if agg_cus >= chartagg
then {
    agg2 = agg_cus;
} else {
    agg2 = chartagg;
}


input agg_type = { default chart, custom };

def aggx;
switch (agg_type) {
case chart:
    aggx = chartagg;
case custom:
    aggx = agg_cus;
}


def data = close(period = aggx);
input avg1_type = AverageType.exponential;
input avg1_length = 30;
def avg1 = MovingAverage(avg1_type, data, avg1_length );

plot z = avg1;

AddLabel(1,
 (if avg1_type == AverageType.SIMPLE then "SMA"
 else if avg1_type == AverageType.EXPONENTIAL then "EMA"
 else if avg1_type == AverageType.HULL then "HULL"
 else if avg1_type == AverageType.WEIGHTED then "WT"
 else if avg1_type == AverageType.WILDERS then "WILD"
 else "---") + avg1_length 
, z.TakeValueColor());


def aggxmin =  aggx / 60000;
AddLabel(yes, "AGG " + if aggxmin < 60 then (aggxmin + " m")
              else if aggxmin < 1440 then ((aggxmin / 60) + " H")
              else if aggxmin < 10080 then (aggxmin / (60 * 24) + " D")
              else if aggx == AggregationPeriod.WEEK then "W"
              else if aggx == AggregationPeriod.MONTH then "M"
              else "", Color.CYAN);

#
 
Solution

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