Per gli esperti di Metastock:
Ciao,
in questo sito:
Automatic Support and Resistance by Mel Widner - Largest database of free formulas, indicators, oscillators and trading systems for Amibroker (AFL), Metastock, eSignal (EFS), and NinjaTrader
www.wisestocktrader.com
ci sono le formule Metastock dell'indicatore: Automatic Support and Resistance by Mel Widner, di cui si può importare il relativo file: MS90FORM.DTA (oppure si possono importare i vari Indicatori: R1, R2,.....S1, S2, ....ma uno per volta), ma quando inserisco nel grafico i vari indicatori uno per uno (ad eccezione di R1 che s'inserisce correttamente nel grafico), con gli altri indicatori: R2, R3,.....S1, S2, ..ecc..,
appare la finestrella: Scaling Options For...in cui confermo: Display new scale on left, ed i vari indicatori rimangono nella parte alta sopra il grafico (v. immagine 1), invece di risultare come nell'esempio presente nel sito (v. immagine 2):
Se qualcuno può risolvere il problema....ringrazio anticipatamente.
Riporto qui per comodità le varie formule degli Indicatori da importare uno per uno in Metastock;
gli indicatori da S1 a S6 e da R1 a R6 dovrebbero essere tracciati come punti e non come una linea continua;
gli Indicatori: WSO e WRO vanno inseriti in una nuova finestra.
------------------------------------
Indicatori:
S1:IF(Ref(LOW,-4)=LLV(LOW,9),Ref(LOW,-4),PREVIOUS)
S2:IF(Fml("S1")=Ref(Fml("S1"),-1),PREVIOUS,Ref(Fml("S1"),-1))
S3:IF(Fml("S1")=Ref(Fml("S1"),-1),PREVIOUS,Ref(Fml("S2"),-1))
S4:IF(Fml("S1")=Ref(Fml("S1"),-1),PREVIOUS,Ref(Fml("S3"),-1))
S5:IF(Fml("S1")=Ref(Fml("S1"),-1),PREVIOUS,Ref(Fml("S4"),-1))
S6:IF(Fml("S1")=Ref(Fml("S1"),-1),PREVIOUS,Ref(Fml("S5"),-1))
-----------------------------------------------------------
R1:IF(Ref(HIGH,-4)=HHV(HIGH,9),Ref(HIGH,-4),PREVIOUS)
R2:IF(Fml("R1")=Ref(Fml("R1"),-1),PREVIOUS,Ref(Fml("R1"),-1))
R3:IF(Fml("R1")=Ref(Fml("R1"),-1),PREVIOUS,Ref(Fml("R2"),-1))
R4:IF(Fml("R1")=Ref(Fml("R1"),-1),PREVIOUS,Ref(Fml("R3"),-1))
R5:IF(Fml("R1")=Ref(Fml("R1"),-1),PREVIOUS,Ref(Fml("R4"),-1))
R6:IF(Fml("R1")=Ref(Fml("R1"),-1),PREVIOUS,Ref(Fml("R5"),-1))
--------------------------------------------------------------
WSO:
100*(1-(
Int(Fml("S1")/CLOSE) + Int(Fml("S2")/CLOSE) +
Int(Fml("S3")/CLOSE) + Int(Fml("S4")/CLOSE) +
Int(Fml("S5")/CLOSE) + Int(Fml("S6")/CLOSE)) / 6)
WRO:
100*(1-(
Int(Fml("R1")/CLOSE) + Int(Fml("R2")/CLOSE) +
Int(Fml("R3")/CLOSE) + Int(Fml("R4")/CLOSE) +
Int(Fml("R5")/CLOSE) + Int(Fml("R6")/CLOSE)) / 6)
-----------------------------------------------------------------