hey swift..... lookin close at your words, is today MA reading which is higher than the previous day , that might give a buy signal each and every day as the 10-day ma moved up......
some might explore for when the "close crossed above the 10-day ma" for a buy signal.... others might look for a turn around in the 10-ma..... which would be something like looking at 3 or more days '10-day ma' ......
in any event, the exploration below might give you some insights..... comments in black , columns in blue and code in purple..... if you wonderin why those colors, it's cause i'm takin a beatin in the markets today.....h
Exploration notes
Col A:
a:=Mov(C,10,S); {10 day moving average}
a>Ref(a,-1) {says todays 10 ma is greater than
yesterdays 10ma }
Col B:
a:=Mov(C,10,S); {10 day moving average}
a<Ref(a,-1) {says todays 10 ma is less than
yesterdays 10ma }
Col C:
a:=Mov(C,10,S); {10 day moving average}
Cross(C,a) {says todays close crossed above the
10ma }
Col D:
a:=Mov(C,10,S); {10 day moving average}
Cross(a,C) {says todays close crossed below the
10ma }
Filter colA OR colB OR colD OR colC
Filter enabled Yes
Periodicity Daily
Records required 61