[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Complicated coding question (or maybe not!)



PureBytes Links

Trading Reference Links

Hello Shraga(Feivi-Philip),

You can calculate the differences and store them as variables then plot the lowest two variables.
Just as an example, not tested
Res2 - Res1 = VarA
Res1 - Pivot = VarB
Pivot - Supp1 = VarC
Supp1 - Supp2 = VarD
Plot1(MinList(VarA, VarB, VarC, VarD,"MinList"))
Plot2(MinList2(VarA, VarB, VarC, VarD,"MinList2"))

best regards
foolsgold


SFP> Hi everyone,
SFP> Having a bunch of values, how can I tell EL to only acknowledge (for the
SFP> purpose of plotting) those that have the smallest different between them? 
SFP> I've currently coded an indicator that gives me several S&R values in the 
SFP> market, based on different calculations. Now I'd like EL to "see" which 
SFP> ones are closest together, and to only plot those, i.e. to be left with S&R 
SFP> convergence levels. Is this at all possible?
SFP> TIA!