anyone want me to release this heat map took me over a month too create
Forums › ProRealTime English forum › ProBuilder support › anyone want me to release this heat map took me over a month too create
- This topic has 2 replies, 2 voices, and was last updated 4 years ago by murit89.
Viewing 3 posts - 1 through 3 (of 3 total)
-
-
07/18/2020 at 3:22 PM #13925307/18/2020 at 3:28 PM #13957707/19/2020 at 12:21 PM #139605Heatmap best used with small units of information123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207st1=(close-high) * volumest2=(close-low) * volumest3=(cumsum (st1+st2))if -st1/st2 > (1) thenDRAWHLINE(close) coloured (0, 255, 0, 10)endifif st2/-st1 > (1) thenDRAWHLINE(close) coloured (255, 0, 0, 10)endifif -st1/st2 > (10) thenDRAWHLINE(close) coloured (0, 255, 0, 10)endifif st2/-st1 > (10) thenDRAWHLINE(close) coloured (255, 0, 0, 10)endifif -st1/st2 > (20) thenDRAWHLINE(close) coloured (0, 255, 0, 20)endifif st2/-st1 > (20) thenDRAWHLINE(close) coloured (255, 0, 0, 20)endifif -st1/st2 > (30) thenDRAWHLINE(close) coloured (0, 255, 0, 30)endifif st2/-st1 > (30) thenDRAWHLINE(close) coloured (255, 0, 0, 30)endifif -st1/st2 > (40) thenDRAWHLINE(close) coloured (0, 255, 0, 40)endifif st2/-st1 > (40) thenDRAWHLINE(close) coloured (255, 0, 0, 40)endifif -st1/st2 > (50) thenDRAWHLINE(close) coloured (0, 255, 0, 50)endifif st2/-st1 > (50) thenDRAWHLINE(close) coloured (255, 0, 0, 50)endifif -st1/st2 > (60) thenDRAWHLINE(close) coloured (0, 255, 0, 60)endifif st2/-st1 > (60) thenDRAWHLINE(close) coloured (255, 0, 0, 60)endifif -st1/st2 > (70) thenDRAWHLINE(close) coloured (0, 255, 0, 70)endifif st2/-st1 > (70) thenDRAWHLINE(close) coloured (255, 0, 0, 70)endifif -st1/st2 > (80) thenDRAWHLINE(close) coloured (0, 255, 0, 80)endifif st2/-st1 > (80) thenDRAWHLINE(close) coloured (255, 0, 0, 80)endifif -st1/st2 > (90) thenDRAWHLINE(close) coloured (0, 255, 0, 90)endifif st2/-st1 > (90) thenDRAWHLINE(close) coloured (255, 0, 0, 90)endifif -st1/st2 > (100) thenDRAWHLINE(close) coloured (0, 255, 0, 100)endifif st2/-st1 > (100) thenDRAWHLINE(close) coloured (255, 0, 0, 100)endifif -st1/st2 > (110) thenDRAWHLINE(close) coloured (0, 255, 0, 110)endifif st2/-st1 > (110) thenDRAWHLINE(close) coloured (255, 0, 0, 110)endifif -st1/st2 > (120) thenDRAWHLINE(close) coloured (0, 255, 0, 120)endifif st2/-st1 > (120) thenDRAWHLINE(close) coloured (255, 0, 0, 120)endifif -st1/st2 > (130) thenDRAWHLINE(close) coloured (0, 255, 0, 130)endifif st2/-st1 > (130) thenDRAWHLINE(close) coloured (255, 0, 0, 130)endifif -st1/st2 > (140) thenDRAWHLINE(close) coloured (0, 255, 0, 140)endifif st2/-st1 > (140) thenDRAWHLINE(close) coloured (255, 0, 0, 140)endifif -st1/st2 > (150) thenDRAWHLINE(close) coloured (0, 255, 0, 150)endifif st2/-st1 > (150) thenDRAWHLINE(close) coloured (255, 0, 0, 150)endifif -st1/st2 > (160) thenDRAWHLINE(close) coloured (0, 255, 0, 160)endifif st2/-st1 > (160) thenDRAWHLINE(close) coloured (255, 0, 0, 160)endifif -st1/st2 > (170) thenDRAWHLINE(close) coloured (0, 255, 0, 170)endifif st2/-st1 > (170) thenDRAWHLINE(close) coloured (255, 0, 0, 170)endifif -st1/st2 > (180) thenDRAWHLINE(close) coloured (0, 255, 0, 180)endifif st2/-st1 > (180) thenDRAWHLINE(close) coloured (255, 0, 0, 180)endifif -st1/st2 > (190) thenDRAWHLINE(close) coloured (0, 255, 0, 190)endifif st2/-st1 > (190) thenDRAWHLINE(close) coloured (255, 0, 0, 190)endifif -st1/st2 > (200) thenDRAWHLINE(close) coloured (0, 255, 0, 200)endifif st2/-st1 > (200) thenDRAWHLINE(close) coloured (255, 0, 0, 200)endifif st3 > (0) thenDRAWHLINE(close) coloured (255, 255, 255, 22)endifif st3 < (0) thenDRAWHLINE(close) coloured (255, 255, 255, 22)endifreturn
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)