NexusFi: Find Your Edge


Home Menu

 




Open BIAS line


Discussion in EasyLanguage Programming

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




Welcome to NexusFi: the best trading community on the planet, with over 150,000 members Sign Up Now, It is Free
  • Genuine reviews from real traders, not fake reviews from stealth vendors
  • Quality education from leading professional traders
  • We are a friendly, helpful, and positive community
  • We do not tolerate rude behavior, trolling, or vendors advertising in posts
  • We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community.  It's free for basic access, or support us by becoming an Elite Member -- see if you qualify for a discount below.

-- Big Mike, Site Administrator

Available coupon codes for premium Elite Membership:
  • If you are a researcher and pay attention to details, you qualify for our 10% discount - "CHARTIST"
  • If you are a veteran or in public/community service, you qualify for 15% discount - "PURPLECHART"
  • If you are 60+ years old, you qualify for our 20% discount - "WISDOM"
  • Discounts are based on the honor system. If we can't trust you to do the right thing, please move along.

(If you already have an account, login at the top of the page)

 
Search this Thread

Open BIAS line

(login for full post details)
  #1 (permalink)
ernmen
Fleming Island
 
Posts: 6 since Jul 2019
Thanks Given: 2
Thanks Received: 0

Open Range BIAS line first 5 min bar - having issue with this simple trend line not showing on all timeframes. Only shows on 1 min and 5 min chart. any help with fixing this to show on all timeframes would be appreciated...

thanks in advance!

 
Code
Variables:

highesthigh( 0 ),
lowestlow( 0 ),
storedlow( 0 ),
storedhigh( 0 ),
absoluterange( 0 ),
biasline_value( 0 ),
biasline( 0 );

if date <> date[1] then begin

	highestHigh = 0;
	lowestLow = 99999999;

end;

// Define range
if (Time >= 0930) and (Time <= 0935) then begin

	storedLow = Low;
	storedHigh = High;
	
	highestHigh = MaxList(High, highestHigh);
	lowestLow = MinList(Low, lowestLow);
	
	absoluteRange = highestHigh - lowestLow;
	biasline_value = highestHigh - (absoluteRange/2);
	
end;

// Draw OR_bias line
if (Time = 935) then begin

	biasline = tl_new(Date, 0935, biasline_value, Date, 1600, biasline_value);
	TL_SetColor(biasline, Yellow);
	TL_SetStyle(biasline, 3);
	TL_SetSize(biasline, 2);
	
end;

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Time and Price Based Horizontal line Indicator - Request
NinjaTrader
BollingerPro discussion
The Elite Circle
Actual code for RSI using Wilders average, not the canne …
ThinkOrSwim
Gabriel Grammatidis
Trading Reviews and Vendors
ninzaco snow eagle trading
NinjaTrader
 

(login for full post details)
  #2 (permalink)
SunTrader
Boca Raton, FL
 
Posts: 252 since Nov 2018
Thanks Given: 77
Thanks Received: 177

It directly references first 5 minutes. How do you suppose that can be done on a timeframe greater than first 5 minutes? Even more importantly why would you want to? Seems to defeat the purpose of what it was specifically coded for.

Reply With Quote
(login for full post details)
  #3 (permalink)
Kolnidrei
Lyon/France
 
Posts: 23 since Aug 2012
Thanks Given: 1
Thanks Received: 14


You can replace the defined timevalues by inputs one can adapt accordingly.

 
Code
Inputs:
starttime(0930),
endtime(0935),
endsessiontime(1600);

if date <> date[1] then begin
highestHigh = 0;
lowestLow = 99999999;
end;

// Define range
if (Time >= starttime) and (Time <= endtime) then begin
storedLow = Low;
storedHigh = High;
highestHigh = MaxList(High, highestHigh);
lowestLow = MinList(Low, lowestLow);
absoluteRange = highestHigh - lowestLow;
biasline_value = highestHigh - (absoluteRange/2);
end;

// Draw OR_bias line
if (Time = endtime) then begin
biasline = tl_new(Date, endtime, biasline_value, Date, endsessiontime, biasline_value);
TL_SetColor(biasline, Yellow);
TL_SetStyle(biasline, 3);
TL_SetSize(biasline, 2);
end;

Reply With Quote
The following user says Thank You to Kolnidrei for this post:





Last Updated on March 14, 2021


© 2023 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