//+------------------------------------------------------------------+
//|                               NewBob Deception Morgan Traders    |
//|                                 Copyright (C) 2019, Newbob Inc.  |
//|                                          http://www.Newbob.co.za |
//+------------------------------------------------------------------+
// Keywords: Just enjoy using this exclusive brokers enemy

#property copyright "Newbob Decepticon"
#property link "www.Newbo.co.za"
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Blue
#property indicator_width1 5
#property strict
extern double lvl1=0;//Level 1
extern double lvl2=0;//Level 2
extern double lvl3=0;//Level 3
extern double lvl4=0;//Level 4
extern color lvlclr=clrRed;//Level Colour
double Buffer2[];
//+------------------------------------------------------------------+
int init(){
    if(false)ObjectsDeleteAll();      // clear the chart
    IndicatorShortName("Illicit Breakout Prot");
    IndicatorDigits(Digits+1);
    IndicatorBuffers(1);
    IndicatorSetInteger(INDICATOR_LEVELS,4);
    SetLevelValue(1,lvl1);
    SetLevelValue(2,lvl2);
    SetLevelValue(3,lvl3);
    SetLevelValue(4,lvl4);
    SetLevelStyle(DRAW_LINE,1,lvlclr);
    SetIndexBuffer(0, Buffer2);
    SetIndexStyle(0, DRAW_HISTOGRAM, STYLE_SOLID);
    return(0);}

int start(){
     for(int i=Bars-IndicatorCounted()-1,current=0;i>=0;i--){ 
      current=i;
      Buffer2[current]= Close[current]-Open[current];}
     return(0);}
