Weirdness , Trying to guess price action with a moving average and 4 deltas – Analytics & Forecasts – 14 November 2023

That is a quick write up , here is the code : #property version   “1.00” #property indicator_chart_window #property indicator_buffers 10 #property indicator_plots   1 input int SpinePeriod=4; input ENUM_APPLIED_PRICE SpinePrice=PRICE_MEDIAN; input int SlowsPeriod=200; input int FastsPeriod=7; input string noteA=”STYLING”; input color SpineColor=clrWhite; input ENUM_LINE_STYLE SpineStyle=STYLE_SOLID; input int SpineWidth=1; double Spine[],spinePeriod[]; double DeltaHighToSpine[],DeltaLowToSpine[]; double SlowHighToSpineAvg[],SlowLowToSpineAvg[],SlowPeriods[]; double