NexusFi: Find Your Edge


Home Menu

 





Boring Indicator


Discussion in ThinkOrSwim

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




 
Search this Thread

Boring Indicator

  #1 (permalink)
 Syedfahim12346 
THE BRONX
 
Experience: Beginner
Platform: Ninjatrader
Trading: Emini es,gold ,stocks
Posts: 4 since Jun 2020
Thanks Given: 2
Thanks Received: 0

Hi need help Making a Indicator
I need This Indicator to do the following :

BORING:

1 . Calculate The Body Of the Candle by doing (OPEN - CLOSE)
2 . Calculate The Range Of The Candle By doing (HIGH - LOW)
3 . Then The BODY should Be <= to 50% of The RANGE

EXCITING:
1 . Calculate The Body Of the Candle by doing (OPEN - CLOSE)
2 . Calculate The Range Of The Candle By doing (HIGH - LOW)
3 . Then The BODY should Be > Then 50% of The RANGE


Please Make 2 Plots For Enable And Disable Any Of the Option.
Thank You

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Better Renko Gaps
The Elite Circle
Cheap historycal L1 data for stocks
Stocks and ETFs
Trade idea based off three indicators.
Traders Hideout
Quantum physics & Trading dynamics
The Elite Circle
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
 
  #2 (permalink)
 
AllSeeker's Avatar
 AllSeeker 
Mumbai, India
Legendary Pratik_4Clover
 
Experience: Beginner
Platform: TradingView & ZerodhaKite
Trading: NIFTY, BANKNIFTY
Frequency: Daily
Duration: Minutes
Posts: 1,428 since Jan 2019
Thanks Given: 5,254
Thanks Received: 5,017


Syedfahim12346 View Post
Hi need help Making a Indicator
I need This Indicator to do the following :

BORING:

1 . Calculate The Body Of the Candle by doing (OPEN - CLOSE)
2 . Calculate The Range Of The Candle By doing (HIGH - LOW)
3 . Then The BODY should Be <= to 50% of The RANGE

EXCITING:
1 . Calculate The Body Of the Candle by doing (OPEN - CLOSE)
2 . Calculate The Range Of The Candle By doing (HIGH - LOW)
3 . Then The BODY should Be > Then 50% of The RANGE


Please Make 2 Plots For Enable And Disable Any Of the Option.
Thank You

I'm neither owner or coder of this code but quick google gave me this, might help you

Quoting 
Code:

# Supply and Demand Candles

input Sensitivity = 1.5;
def Candle_Range = high - low;
def Body_Range = AbsValue(close - open);
def Bar_Lookback = 100;
def Volatility = atr(Bar_Lookback);
def Strength = Volatility * Sensitivity;
def Exciting = (Body_Range > Candle_Range* 0.6) and (Candle_Range >= Strength);
def Boring = Body_Range <= Candle_Range * 0.5;
assignPriceColor(if Exciting then Color.WHITE else if Boring then Color.Blue else Color.Current);


Visit my NexusFi Trade Journal Reply With Quote




Last Updated on October 12, 2020


© 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