Look for a MTF indicator, or make an indicator that reads other timeframes.
Now for non professional its smallest bump in the road "array out range" == game over giveup.
Look in codebase for examples.
Can you tell me how I can draw a MA indicator of a specific time frame in all higher and lower time frames,
which means that for example how I can have a MA indicator of a 30-minute time frame without any problems on a 15-minute time frame and 1 hour time frame
A 100 period MA on 15 min will be equivalent to 50 period MA on 30 min and 25 period MA on 1 hour. Similarly you can calculate for other periods.
To draw a (MA) indicator of a specific time frame in all higher and lower time frames, you can use the following steps:
- Determine the time frame for which you want to draw the MA indicator. Let's say you want to draw a 30-minute MA indicator.
- Use the appropriate formula to calculate the MA for the selected time frame. For example, for a 30-minute MA, you would calculate the average of the last 30 minutes of closing prices.
- Plot the calculated MA value on the chart for the selected time frame.
- To display the same MA indicator on a higher time frame, you can use the same formula to calculate the MA based on the higher time frame. For example, if you want to display the 30-minute MA on a 1-hour time frame, you would calculate the average of the last 2 30-minute bars.
- Plot the calculated MA value on the chart for the higher time frame.
- Repeat the process for all higher and lower time frames as needed.
You can use any charting software or programming language that supports the calculation and plotting of MA indicators to accomplish this.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Can you tell me how I can draw a MA indicator of a specific time frame in all higher and lower time frames,
which means that for example how I can have a MA indicator of a 30-minute time frame without any problems on a 15-minute time frame and 1 hour time frame