Find your Favourite Pattern
stocks that follow a seasonal tendency 24 replies
Seasonal/daily tendencies in FX? 9 replies
Seasonal Currency Rate Changes 0 replies
Seasonal Trades for USD/JPY and USD/CHF in July 3 replies
Seasonal trends for currencies 5 replies
function run()
{
BarPeriod = 60;
set(PLOTNOW);
PlotWidth = 2000;
PlotScale = 12;
int h = hour() + 24*(dow()-1);
var value = (price(0)-price(h))/PIP;
plotBar("Price",h,hour(0),value,AVG|BARS,RED);
plotBar("StdDev",h,hour(0),value,DEV|BARS,BLUE);
}