NexusFi: Find Your Edge


Home Menu

 





Trying to Convert Pine script to Thinkscript.. Need help


Discussion in ThinkOrSwim

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




 
Search this Thread

Trying to Convert Pine script to Thinkscript.. Need help

  #1 (permalink)
 
stockdunia's Avatar
 stockdunia 
Tampa + FL
 
Experience: None
Platform: ThinkorSwim
Trading: Stocks
Posts: 4 since Jul 2013
Thanks Given: 1
Thanks Received: 2

I am trying to convert following pine script code to thinkscript but seems not working. Please help me. Basically, I am trying to reassign the variable value.

TradingView Pine script
 
Code
var int state = 0
if state != 0 and a == 0
    state := 0
if state != 1 and a == 1
    state := 1
if state != 2 and a == -1
    state := 2
if state == 1 and change(a) < 0
    state := 3
if state == 2 and change(a) > 0
    state := 4
Thinkscript
 
Code
def state;

state = if state[1] != 0 and a == 0 then  0
        else if state[1] != 1 and a == 1 then 1
        else if state[1] != 2 and a == -1 then 2
        else if state[1] == 1 and a - a[1] < 0 then 3
        else if state[1] == 2 and a-a[1] > 0 then 4
        else  0
;

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
Trade idea based off three indicators.
Traders Hideout
Better Renko Gaps
The Elite Circle
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
MC PL editor upgrade
MultiCharts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
22 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #2 (permalink)
 
justtrader's Avatar
 justtrader 
San Francisco, CA
 
Experience: Intermediate
Platform: Ninja Trader, TOS
Trading: es, rty, cl, gc, nq, ym
Posts: 183 since May 2011
Thanks Given: 104
Thanks Received: 173


stockdunia View Post
I am trying to convert following pine script code to thinkscript but seems not working. Please help me. Basically, I am trying to reassign the variable value.

TradingView Pine script
 
Code
var int state = 0
if state != 0 and a == 0
    state := 0
if state != 1 and a == 1
    state := 1
if state != 2 and a == -1
    state := 2
if state == 1 and change(a) < 0
    state := 3
if state == 2 and change(a) > 0
    state := 4
Thinkscript
 
Code
def state;

state = if state[1] != 0 and a == 0 then  0
        else if state[1] != 1 and a == 1 then 1
        else if state[1] != 2 and a == -1 then 2
        else if state[1] == 1 and a - a[1] < 0 then 3
        else if state[1] == 2 and a-a[1] > 0 then 4
        else  0
;

No sure what is your issue. Also, I believe that knowing what variable "a" is or how it is assigned my help.

TWYS NWYT (Price Advertises Opportunity; Time Regulates it; Volume Measures its Success/Failure ---- Dalton)
Reply With Quote
  #3 (permalink)
 
Massive l's Avatar
 Massive l 
OR/USA
Legendary /NQ Trader
 
Experience: None
Posts: 2,129 since Mar 2011
Thanks Given: 1,859
Thanks Received: 5,106


define state first

def state = defined state formula;
def condition1 = if state[1] != 0 and a == 0 then 0
else if state[1] != 1 and a == 1 then 1
else if state[1] != 2 and a == -1 then 2
else if state[1] == 1 and a - a[1] < 0 then 3
else if state[1] == 2 and a-a[1] > 0 then 4
else 0;

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #4 (permalink)
 
stockdunia's Avatar
 stockdunia 
Tampa + FL
 
Experience: None
Platform: ThinkorSwim
Trading: Stocks
Posts: 4 since Jul 2013
Thanks Given: 1
Thanks Received: 2

Thank You. It seems to work.

Started this thread Reply With Quote
Thanked by:




Last Updated on November 8, 2021


© 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