Stock Markets

26,422,227 Views | 237062 Replies | Last: 16 min ago by Brewmaster
wanderer
How long do you want to ignore this user?
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?
Dan Scott
How long do you want to ignore this user?
AG
Waiting until 11:30ish when Europe closes. Whenever futures tank because of Europe, as soon as their markets close we get a nice bounce.
AgEng06
How long do you want to ignore this user?
AG
I think the frequent flips back and forth today are tripping it out (and are also tough to trade). It seems to run better when MAs flip and then pick a direction for a little while.

Mine in TOS looks like yours, by the way.
Triple_Bagger
How long do you want to ignore this user?
Thank you!
FTAG 2000
How long do you want to ignore this user?
AG
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.

Anyone want to translate this to TOS?
Golf1
How long do you want to ignore this user?
AG
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?
FJ43
How long do you want to ignore this user?
Have a mind to lotto SPY puts
Wealth gained hastily will dwindle. but whoever gathers little by little will increase it.
Proverbs 13:11

Philip J Fry
How long do you want to ignore this user?
AG
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?


That's annoying. Probably the same issue 30K was running into
SoTXAg09
How long do you want to ignore this user?
AG
SoTXAg09 said:

What a freaking chop fest. Looks like H&S on SPY 5 min.

This aged poorly.
Charismatic Megafauna
How long do you want to ignore this user?
AG
FJ43 said:

Have a mind to lotto SPY puts

You had me at lotto!
ProgN
How long do you want to ignore this user?
Charismatic Megafauna said:

FJ43 said:

Have a mind to lotto SPY puts

You had me at lotto!
FJ43
How long do you want to ignore this user?
Charismatic Megafauna said:

FJ43 said:

Have a mind to lotto SPY puts

You had me at lotto!


We just ran into MT from prior high to todays low. Let's see.


Wealth gained hastily will dwindle. but whoever gathers little by little will increase it.
Proverbs 13:11

AgEng06
How long do you want to ignore this user?
AG
I will say... 30K's indicator trigger at 10:45 was money. I wish I wasn't just paper trading it.
Dan Scott
How long do you want to ignore this user?
AG
BRDS volume over 100M today. YTD average volume is about 5M.

Can somebody remind me what OA's goalpost trade was about. There's a huge volume bar today which represents institutions getting in. Now they'll manipulate on little volume until they ready to send it up. Is that the general idea?
Jet Black
How long do you want to ignore this user?
Or continuing to hold or did you get out on that pop?
Dan Scott
How long do you want to ignore this user?
AG
I sold half at .18 for 50% gain. Holding onto to rest to see what happens.
Dan Scott
How long do you want to ignore this user?
AG
BRDS volume spike
Dan Scott
How long do you want to ignore this user?
AG
BRDS April 2.50 calls has volume of 544 today. Lol who is buying that
FJ43
How long do you want to ignore this user?
VIX April 30C has nuts level OI
Wealth gained hastily will dwindle. but whoever gathers little by little will increase it.
Proverbs 13:11

Charismatic Megafauna
How long do you want to ignore this user?
AG
FJ43 said:

. Let's see.


Yeah that was a good idea! (Wait and see, i mean)
$30,000 Millionaire
How long do you want to ignore this user?
AG
Opex volatility starting.
You don’t trade for money, you trade for freedom.
FJ43
How long do you want to ignore this user?
Charismatic Megafauna said:

FJ43 said:

. Let's see.


Yeah that was a good idea! (Wait and see, i mean)


Didn't confirm to downside so that's why we wait.
Wealth gained hastily will dwindle. but whoever gathers little by little will increase it.
Proverbs 13:11

Boy Named Sue
How long do you want to ignore this user?
AG
I can't load indicators from 30k or Irish Pete in TV. Am I the only one?
Philip J Fry
How long do you want to ignore this user?
AG
I'll just copy/paste my code in texags when I get a free moment.
jimmo
How long do you want to ignore this user?
$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.
I could attempt it this weekend. (shade tree coding, Inc)
what's the parameters you're looking for?
$30,000 Millionaire
How long do you want to ignore this user?
AG
jimmo said:

$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.
I could attempt it this weekend. (shade tree coding, Inc)
what's the parameters you're looking for?


That would be awesome. Same parameters as the indicator bit a scan.
You don’t trade for money, you trade for freedom.
$30,000 Millionaire
How long do you want to ignore this user?
AG
Green Day and a green week, but really tough one today, I thought.
You don’t trade for money, you trade for freedom.
YaketyYak
How long do you want to ignore this user?
I don't code and I don't have the time to test and if it worked, but I asked ChatGPT to create a ThinkScript code for a stock scanner based on the parameters posted earlier and this is what it said:


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;

To use this scanner code in ThinkorSwim:
[ol]
  • Open the ThinkorSwim platform.
  • Click on the "Scan" tab.
  • Click on "Stock Hacker" (or "Option Hacker" if you are looking for options).
  • Click on "Add study filter" in the filter section.
  • Click on the pencil icon to edit the filter.
  • Replace the default code in the editor with the provided scanner code.
  • Click "OK" to save the changes.
  • Adjust any other filters as needed, and click "Scan" to run the stock scanner.
  • [/ol]
    This scanner will search for stocks that meet either the long or short entry conditions defined in the original script. You can further customize the scanner by adding additional filters or modifying the existing code as needed.


    Take out the papers and the trash, or you don't get no spendin' cash
    SF2004
    How long do you want to ignore this user?
    AG
    $30,000 Millionaire said:

    Green Day and a green week, but really tough one today, I thought.
    Entered my first futures traded with the script. Managed my stops.

    Probably a little too tight on the last stop move and closed out with $325 profit.

    I stopped out early on a long run but that is a component of being conservative in my first futures trade.
    ProgN
    How long do you want to ignore this user?
    Just noticed their dividend is 4.5% , with their sound standing do you think they'll keep it or cut it?
    $30,000 Millionaire
    How long do you want to ignore this user?
    AG
    What did you do?
    You don’t trade for money, you trade for freedom.
    BaylorSpineGuy
    How long do you want to ignore this user?
    Almost brought this to the board earlier this week. Certainly people hoping for a rally if Fed cuts rates. History suggests otherwise.
    SF2004
    How long do you want to ignore this user?
    AG
    $30,000 Millionaire said:

    What did you do?


    Filled at 3968 - A little late due to some timing differences in my trading view, got that fixed
    First Stop set at 3950
    Moved Stop to 3965 on the red candle
    Moved to 3968 during the second green candle
    Quickly moved stop to capture profit at 3975

    Stopped out that the next red candle before the run continued (and still going).

    I think I was too conservative but it was a green trade.
    irish pete ag06
    How long do you want to ignore this user?
    AG
    What platform are you trading futures?
    Bonfire1996
    How long do you want to ignore this user?
    AG
    ProgN said:

    Just noticed their dividend is 4.5% , with their sound standing do you think they'll keep it or cut it?
    keep it. Banks set dividend level based on profits not dividend yield.
    First Page Last Page
    Page 6045 of 6774
     
    ×
    subscribe Verify your student status
    See Subscription Benefits
    Trial only available to users who have never subscribed or participated in a previous trial.