Your identity shapes what you can perceive, you're sticking points, the WORK you do in purposeful learning and ultimately the results you receive.
How do you go about selecting your Universe of stocks to trade?
How do you determine when you should enter and when you exit?
Post a chart and log of how you see the market.
If you're not annotating your charts nor logging, there's no way for you to get better outside the paradigm you exist within.
The fact that you are trading low quality stocks under $10 with low liquidity is a gamblers game.
I use TradeStation scanner to select stocks once a week, Fridays at 8:05PM based on the following criteria: (largely the same week to week) and considering tweaking it some to narrow and rotate based on sector and industry performance.
Current Ratio > 1
Quick Ratio > 1
ROE > 0
Average 50 day volume > 255,000
I copy and paste into RadarScreen where I sort based on price, <$13 I move to a different Radarscreen for my smaller accounts
I then sort by %R momentum and RSI Crossover indicator I wrote. I will send snapshot on Friday.
Here is my entry criteria (Not to exceed)
{Buy Limit}
If Open < Close[2] then PortE = Low[2]
Else if Open < High[1] or Open = High[1] and Open > Low[2] then PortE = High[1]
Else if Open > High[1] then PortE = Last
Else if Open < Low[1] then PortE = Last;
Where portE is Position Entry. Meaning any price below this variable.
Here is my stop criteria:
If Low[1] - .04 < Low then
TStop = Low[1] - .04 else
If Low[1] - .04 > Low then
TStop = Low - .04 Else
If Low[1] -.04 = Low then
TStop = Low - .04 else
If Last < TStop then
TStop = Last -.04;
Here is my profit target:
{Fibonacca Retracement}
Fib = ((HBar - LBar)*.382) + Lbar;
TargetP = Fib - .03;