Page 1 of 1

Charting & Crossover

Posted: Thu Aug 20, 2015 4:17 am
by Rickbw
A couple questions;

1) Is there a way to shade Bollinger Bands in the chart designer?

2) Can I create an event where the LRC_SDChannel (10,1)Mid crosses above the BB(10,0.5)Lower as an entry &
when the LRC_SDChannel (10,1)Mid crosses below the BB(10,0.5)Upper as an exit?

Thank you

Re: Charting & Crossover

Posted: Sat Sep 05, 2015 5:37 pm
by Chris White
Hi Rick,

1. There is an indicator called AreaBB which draws a shaded area between the Bollinger Bands.

2.
Here's the code you would need for the entry:

Code: Select all

BBL:= FML('BB(10, .5)[Lower]');
LRC:= FML('LRC(10)');
event: CROSS(LRC, BBL);
And for the exit:

Code: Select all

BBU:= FML('BB(10, .5)[Upper]');
LRC:= FML('LRC(10)');
event: CROSS(BBU, LRC);
Here's a chart with the indicators:
rick_entry_exit.png
rick_entry_exit.png (65.45 KiB) Viewed 14767 times