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,366 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?
CFTC Opens First COT Report Review in 20 Years -- Asks W …
Traders Hideout
ATFX Suspends Prop Trading Unit ATFunded -- Full Review …
Funded Trading Evaluation Firms
April CPI Preview: +3.7% YoY Expected at 8:30 AM ET -- C …
Traders Hideout
Ninjatrader users - good CONNECTIONs post and article fr …
NinjaTrader
Trump Truth Social Fires Hormuz From 10% to 59% -- Arsen …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
13 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 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