I'm trying to create an indicator based on the difference between Welles Wilder's +DMI and -DMI. I have created and used it in Metastock but as of now my efs abilities are limited to the wizard approach and I cannot see how to do this using the wizard. I've shown the formula code for Metastock below. I would also like to overlay an ema of this indicator (with periods as an input variable) in order to take signals generated by indicator/ema crossovers. Any guidance or help would be much appreciated.
Thanks, Bill
PDIPeriods:= Input("Enter The Number Of PDI Periods",1,100,14);
MDIPeriods:= Input("Enter The Number Of MDI Periods",1,100,14);
PDI(PDIPeriods)- MDI(MDIPeriods);
Thanks, Bill
PDIPeriods:= Input("Enter The Number Of PDI Periods",1,100,14);
MDIPeriods:= Input("Enter The Number Of MDI Periods",1,100,14);
PDI(PDIPeriods)- MDI(MDIPeriods);
Comment