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,388 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?
Warsh Opens Today, Hormuz June 19 -- WTI Below $80, Fran …
Prediction Markets & Event Contracts
Iran Forward Curve: June 30 at 56% vs June 15 at 28% -- …
Prediction Markets & Event Contracts
Rubios Good News Within Hours and the 30-Day Math: Why H …
Prediction Markets & Event Contracts
S&P 500 Holds the Line: No Fast Track for SpaceX, Op …
Stocks and ETFs
Six Days to Kickoff: World Cup Prediction Markets Hit $1 …
Prediction Markets & Event Contracts
 
  #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