NexusFi: Find Your Edge


Home Menu

 





Redefining Variables in ThinkScript


Discussion in ThinkOrSwim

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




 
Search this Thread

Redefining Variables in ThinkScript

  #1 (permalink)
Protolate
Trabuco Canyon, California
 
Posts: 1 since Jul 2019
Thanks Given: 0
Thanks Received: 0

Currently, I want to add a down arrow after a condition. I want to avoid having multiple down arrows in a row, and I want use a variable to store whether the last arrow was up or down, but I don't know how I can change this variable and refer to it later on.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Cheap historycal L1 data for stocks
Stocks and ETFs
Quantum physics & Trading dynamics
The Elite Circle
ZombieSqueeze
Platforms and Indicators
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
22 thanks
What is Markets Chat (markets.chat) real-time trading ro …
19 thanks
ApexTraderFunding.com experience and review
15 thanks
GFIs1 1 DAX trade per day journal
15 thanks
EG Indicators
11 thanks
  #2 (permalink)
Nube
Minneapolis Minnesota
 
Posts: 24 since Jul 2019
Thanks Given: 0
Thanks Received: 13

This should help get you started. Pots a down arrow on the most recent of either of two different condition and displays in a label which of the two conditions that is.

 
Code
def upCondition = Average(close, 10) crosses above Average(close, 20);
def downCondition = Average(close, 10) crosses below Average(close, 20);
def whichCondition = if upCondition then 1 else
                   if downCondition then 0 else
                      whichCondition[1];

plot 
ConditionBar = BarNumber() == HighestAll(if whichCondition != whichCondition[1] then
                                           BarNumber() else Double.NaN);
ConditionBar.SetPaintingStrategy(PaintingStrategy.BooLEAN_ARROW_DOWN);

AddLabel(whichCondition, " Up Condition ", Color.UpTick);
AddLabel(!whichCondition, " Down Condition ", Color.DownTick);

Reply With Quote




Last Updated on July 8, 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