Backgroundcolor between period
Forums › ProRealTime English forum › ProBuilder support › Backgroundcolor between period
- This topic has 5 replies, 2 voices, and was last updated 6 years ago by
robertogozzi.
-
-
02/21/2019 at 5:16 PM #91948
Hi all!
I need your help. I tryed to build an indicator that draws a background color between two Dates. The problem is that i want the indicator to draw the backgroundcolor every year so i don’t want the year as a input parameter.
Example:
“Draw Backgroundcolor RED Between 1.5. Until 15.10.”
Thanks for help.
02/21/2019 at 5:46 PM #91955This is an excellent example: https://www.prorealcode.com/prorealtime-indicators/supertrend-sar-background-indicator/
02/21/2019 at 5:59 PM #9195602/21/2019 at 6:08 PM #91959Since your refers to times 01:50 and 15:10 you need to use it ON TF’s <= 10 minutes.
You can use it on any TF that CLOSES on that time.
For Daily or greater TF’s you cannot refer times at all, since ProBuilder does not support Multiple Time Frames.
02/21/2019 at 6:19 PM #91961sorry perhaps i wrongly expressed.
if we have the 1st of may then i want the backgroundcolor until 15th of october. I need that on daily TFs and i want it to work every year in the past and the future
123456789101112// Backgroundcolor between 10.5 - 12.12.Date1ADay = 10Date1AMonth=5If openday>Date1ADay and openmonth>Date1AMonth thenBACKGROUNDCOLOR(255,0,0)endifreturn02/21/2019 at 11:49 PM #91992I did not test it:
123456// Backgroundcolor between 10.5 - 12.12.ChangeBackground = (Day >= 5 AND Month = 5) OR (Day <= 12 AND Month = 12) OR (Month >= 6 AND Month <= 11)If ChangeBackground thenBACKGROUNDCOLOR(255,0,0)endifreturn1 user thanked author for this post.
-
AuthorPosts