Hi All,
Lets say that I had a simple trading system in place using moving averages (the length does not matter). If the price was above the moving average, I would buy. If the price was below the moving average, I would sell. I know this is not the best system, but I am starting out simple.
My question is this: Would it be better to sell if the current price <= (less than or equals) the MA or would it be better to sell if the current price is < (less than) the MA. I have been looking at lots of charts and have a good case for each. However, I want to choose the best one and am having trouble making the decision.
So, in closing, which do you TA gurus think is better:
if (curPrice <= MA) { sell() }
or
if (curPrice < MA) { sell() }
Thanks in advance for any responses.
c
Lets say that I had a simple trading system in place using moving averages (the length does not matter). If the price was above the moving average, I would buy. If the price was below the moving average, I would sell. I know this is not the best system, but I am starting out simple.
My question is this: Would it be better to sell if the current price <= (less than or equals) the MA or would it be better to sell if the current price is < (less than) the MA. I have been looking at lots of charts and have a good case for each. However, I want to choose the best one and am having trouble making the decision.
So, in closing, which do you TA gurus think is better:
if (curPrice <= MA) { sell() }
or
if (curPrice < MA) { sell() }
Thanks in advance for any responses.
c
