|
mits101963
2018-03-28 02:05:34
|
|
Hi,
I downloaded https://www.quantshare.com/item-528-fisher-transform-technical-indicator and it works like a charm.
I tried to display it weekly on a daily chart using the following code
either this
TimeframeSet(7);
b=Fisher((high+low)/2, 10);
TimeframeRestore();
plot(b, "Fish", green);
or this
b=timeframeapply(7, Fisher((high+low)/2, 10));
b=timeframedecompress(b);
plot(b, "Fish", green);
but i am getting an error "Fish:no number" on the pane.
when changing the chart to weekly of course there is no error.
any suggestions?
thanks in advance
|
|