PureBytes Links
Trading Reference Links
|
Larry,
You can't plot any farther right than the last date of price data.
But, something you might consider is that you can shift your price data
backwards on the plot so it appears that you are advancing your supp/resist
indicators.
Basically, you can create a custom indicator that will shift your prices by
X bars (X will be your choice depending on what you are trying to accomplish
visually).
{Custom Indicator}
BarsBack:=Input("Enter bars to shift",1,100,5);
Ref(CLOSE,BarsBack);
Note that BarsBack is a positive number. You will need to plot this as a
line and delete your base security. It's not as informative as bars or
candles, but it will give you the appearance of shifted support/resistance.
Dave Nadeau
Fort Collins, CO
--------------------------------
Is there a way to advance a support or resistance indicator forward for the
day that there is no data field.
Thanks
Larry
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
|