I have this idea and don't know how or if it is even possible:
(The following isn't code but my attempt at writing it down and helping visualise/explain it)
if
Close[x]>Close[X+1]
golong
example
x=5
Close[5]>Close[5+1] && Close[4]>Close[4+1] && Close[3]>Close[3+1] && Close[2]>Close[2+1] && Close[1]>Close[1+1] && Close[0]>Close[0+1]
maybe?
if x != 0?
{
Close[x]>Close[x+1]
something with ++?
}
It's a long shot, as I said earlier don't know how I would go about it maybe it's fairly simple I dont know, basicly having an optimizable variable but instead of just saying Close[0]>Close[variable] having new conditions with && depending on the variable.
btw maybe it is clear but I'm fairly new to this 1-2weeks
Hope the explanation is clear enough, any help is appreciated,
Carl

.
Comment