DonDelMuerte
New member
Finding reverse splits can be extremely important to a momentum trader, especially when a low float/low cap stock is looking to make an offering. Usually a reverse split is approved, then the press release PR is released to pump a stock - sometimes so the company can make an offering. Here is a study scan to look for recent reverse splits within the last 60 bars (daily for me):
Whats interesting about the
I use this indicator, in conjunction with SEC filing data, to determine if a company is likely to pump a stock for offering (bearish) and if not (bullish).
Code:
def d = GetSplitDenominator();
def n = GetSplitNumerator();
rec d_r = if !isNaN(d) then d else d_r[1];
rec n_r = if !isNan(n) then n else n_r[1];
def o = GetEventOffset(Events.SPLIT,-1);
def cond1 = o <= 60;
def cond2 = d_r>n_r;
plot x = cond1 and cond2;
Whats interesting about the
GetSplitDenominator()
function is that it only returns a value on the day of the split. So we have to create a recursive variable that saves the previous split information. Also, placing -1 as an argument to GetEventOffset()
returns previous splits. A positive 1 will return future splits.I use this indicator, in conjunction with SEC filing data, to determine if a company is likely to pump a stock for offering (bearish) and if not (bullish).
Last edited by a moderator: