NexusFi: Find Your Edge


Home Menu

 





close of previous bar less than twenty five percent from the high or low


Discussion in ThinkOrSwim

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




 
Search this Thread
  #1 (permalink)
The Gurok
Poplar Bluff
 
Posts: 7 since Aug 2014
Thanks Given: 0
Thanks Received: 1

Hello Everyone,

I am trying to make a simple indicator in thinkorswim that will tell me if the close of previous bar was less than or equal to twenty five percent from the high, or less than or equal to twenty five percent from the low. Here is my code. It is not working I am very new to programming LOL.

def twentyfivepercent = 0.25;
def calcHIGH = close <= high;
def calcLOW = close >= low;
def candleendONE = calcHIGH <= 0.25;
def candleendTWO = calcLOW <= 0.25;
plot candlesOne = candleendONE is true;
plot candleTwo = candleendTWO is true;


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Hormuz Surges From 14% to 26.5% Intraday as Irans Answer …
Prediction Markets & Event Contracts
After $87M Settles NO: Irans Nuclear Redline Sets Up the …
Prediction Markets & Event Contracts
One Wallet Made $200K in Hours: AP Probes Polymarket Cea …
Prediction Markets & Event Contracts
Iran Lebanon Problem Kills Switzerland Talks, Brent at $ …
Prediction Markets & Event Contracts
CFTC Workforce Shrinks 24% to 15-Year Low While Predicti …
Traders Hideout
 
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)
emanon
los angeles, California, USA
 
Posts: 8 since Aug 2014
Thanks Given: 2
Thanks Received: 1

Is this a scan or an indicator?
As an indicator all this would plot is a true or false, or a 1/0.
If it's a scan, you can only have a single plot.

 
Code
declare lower; #remove this if it's a scan.

input percent = 1.25; # 1.25 allows for more easy addition & subtraction to h / l.
def calcHIGH = close <= high[1] / percent;
def calcLOW = close >= low[1]  * percent;

plot signal = calcHIGH or calcLOW; # this will plot a 1 if true, 0 if false.


Reply With Quote
  #3 (permalink)
The Gurok
Poplar Bluff
 
Posts: 7 since Aug 2014
Thanks Given: 0
Thanks Received: 1



emanon View Post
Is this a scan or an indicator?
As an indicator all this would plot is a true or false, or a 1/0.
If it's a scan, you can only have a single plot.

 
Code
declare lower; #remove this if it's a scan.

input percent = 1.25; # 1.25 allows for more easy addition & subtraction to h / l.
def calcHIGH = close <= high[1] / percent;
def calcLOW = close >= low[1]  * percent;

plot signal = calcHIGH or calcLOW; # this will plot a 1 if true, 0 if false.


Turns out I had a solution to this problem all along(just using my eyes LOL) thank you so much for your help.


Reply With Quote




Last Updated on August 18, 2014


© 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