- ago
Hi, we're new here. We're trying to develop a Daily/Weekly/Monthly Pivot Point Indicator so that we can add them as signal filters for our Building Blocks. We seem to be having issues with the Indicator Builder. Has anybody accomplished this? Or can you point us in the right direction? Thank you!
0
88
Solved
5 Replies

Reply

Bookmark

Sort
- ago
#1
You can use the ScaleInd (a Transformer indicator) to convert an indicator (like the daily pivots) to the higher bar scale that you want.
0
Best Answer
Glitch8
 ( 11.27% )
- ago
#2
If you flesh out the specs you’re trying to achieve I can provide some example code for your indicator.
0
- ago
#3
Thank you both for the prompt responses.

We're looking to make a Floor Pivot Point indicator. Here are the formulas:

Pivot (P):
P = (High + Low + Close) / 3

Support & Resistance Levels:
R1 = (P×2) - Low
S1 = (P×2) - High
R2 = P + (High – Low)
S2 = P – (High – Low)

We’re also aiming to have this as an indicator for each timeframe:
Daily
Weekly
Monthly

Let us know if you need any additional info.
0
- ago
#4
It already exists as a built-in indicator.
0
- ago
#5
Oh ok — we got it now. We just combine the Pivots with the ScaleInd to convert it to say weekly on a daily chart. Thank you!
1

Reply

Bookmark

Sort