NexusFi: Find Your Edge


Home Menu

 





Trying to Convert Pine script to Thinkscript.. Need help


Discussion in ThinkOrSwim

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




 
Search this Thread
  #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?
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)
 
justtrader's Avatar
 justtrader 
San Francisco, CA
 
Experience: Intermediate
Platform: Ninja Trader, TOS
Trading: es, rty, cl, gc, nq, ym
Posts: 191 since May 2011
Thanks Given: 107
Thanks Received: 176


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,108


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


© 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