still seems like 30k's script that was converted to TOS still isn't indicating/displaying correctly. Can someone post today's SPY from TV?
Anyone want to translate this to TOS?Philip J Fry said:
30K has motivated me to build my own Tradingview strategy.
https://www.tradingview.com/script/aiUYF8lu-MACD-with-Adjustable-Angle-Strategy/
Basically, I'm using MACD, but I've included an "angle at crossover" adjustable variable. I'm using this to try and reduce the number of false signals. So far, I've been using it to judge entries for SPY and UPRO. I'll take a 60% win rate.
Philip J Fry said:
30K has motivated me to build my own Tradingview strategy.
https://www.tradingview.com/script/aiUYF8lu-MACD-with-Adjustable-Angle-Strategy/
Basically, I'm using MACD, but I've included an "angle at crossover" adjustable variable. I'm using this to try and reduce the number of false signals. So far, I've been using it to judge entries for SPY and UPRO. I'll take a 60% win rate.
Golf1 said:Philip J Fry said:
30K has motivated me to build my own Tradingview strategy.
https://www.tradingview.com/script/aiUYF8lu-MACD-with-Adjustable-Angle-Strategy/
Basically, I'm using MACD, but I've included an "angle at crossover" adjustable variable. I'm using this to try and reduce the number of false signals. So far, I've been using it to judge entries for SPY and UPRO. I'll take a 60% win rate.
Shows script is not available now?
SoTXAg09 said:
What a freaking chop fest. Looks like H&S on SPY 5 min.
FJ43 said:
Have a mind to lotto SPY puts
Charismatic Megafauna said:FJ43 said:
Have a mind to lotto SPY puts
You had me at lotto!
Charismatic Megafauna said:FJ43 said:
Have a mind to lotto SPY puts
You had me at lotto!
FJ43 said:
. Let's see.
Charismatic Megafauna said:FJ43 said:
. Let's see.
Yeah that was a good idea! (Wait and see, i mean)
I could attempt it this weekend. (shade tree coding, Inc)$30,000 Millionaire said:
Does anyone feel like coding a scan for the TDI indicator for TOS?
I don't think trading view supports custom scans.
jimmo said:I could attempt it this weekend. (shade tree coding, Inc)$30,000 Millionaire said:
Does anyone feel like coding a scan for the TDI indicator for TOS?
I don't think trading view supports custom scans.
what's the parameters you're looking for?
Quote:
# ThinkScript Stock Scanner Code
input rsiPeriod = 13;
input rsiPrice = close;
input signalSmoothing = 7;
input bollingerLength = 34;
input bollingerStdDev = 2.0;
def rsi = RSI(rsiPrice, rsiPeriod);
def bollingerBasis = reference BollingerBands(rsiPrice, bollingerLength, bollingerStdDev).MidLine;
def bollingerUpper = reference BollingerBands(rsiPrice, bollingerLength, bollingerStdDev).UpperBand;
def bollingerLower = reference BollingerBands(rsiPrice, bollingerLength, bollingerStdDev).LowerBand;
def TDI = (rsi - bollingerLower) / (bollingerUpper - bollingerLower) * 100;
def signalLine = MovingAverage(AverageType.SIMPLE, TDI, signalSmoothing);
def ema5 = ExpAverage(close, 5);
def ema12 = ExpAverage(close, 12);
def longEntry = TDI crosses above 50 and ema5 crosses above ema12;
def shortEntry = TDI crosses below 50 and ema5 crosses below ema12;
# Scanner Condition
plot scan = longEntry or shortEntry;
Entered my first futures traded with the script. Managed my stops.$30,000 Millionaire said:
Green Day and a green week, but really tough one today, I thought.
$30,000 Millionaire said:
What did you do?
keep it. Banks set dividend level based on profits not dividend yield.ProgN said:
Just noticed their dividend is 4.5% , with their sound standing do you think they'll keep it or cut it?