Stock Markets

26,171,712 Views | 235854 Replies | Last: 1 hr ago by FobTies
Ag CPA
How long do you want to ignore this user?
AG
Farmer @ Johnsongrass, TX said:

Ag CPA said:

Dan Scott said:

Biggest oil bull on the street reduced price target. Goldman now has 12 month price target on Brent at $94.


They will be down to $74 soon.
Brent's trading at $73.19 / +$0.22 as of 9:59pmCT 3/19/23

?
I meant GS.
EngrAg14
How long do you want to ignore this user?
AG
This marksts looks like the usua rally into feds.

Assuming 50 point hike is priced into market atm and likely sends markets downward a little or flat.
0/25 send markets upward, pushing 4000 SP and upwards.

What would need to occur speech wise is a 0/25 hike occurs to send the markets downward?
$30,000 Millionaire
How long do you want to ignore this user?
AG
Indicator working out for you boys?
AgEng06
How long do you want to ignore this user?
AG
Is your indicator able to be used in TOS, or just Trading View?
$30,000 Millionaire
How long do you want to ignore this user?
AG
Triggered long on gold.
$30,000 Millionaire
How long do you want to ignore this user?
AG
AgEng06 said:

Is your indicator able to be used in TOS, or just Trading View?


I wrote it for trading view. I could probably write it for TOS.
$30,000 Millionaire
How long do you want to ignore this user?
AG
I'd be careful on this gold long. Good r/r but it's not clearing fast.
FTAG 2000
How long do you want to ignore this user?
AG
$30,000 Millionaire said:

Indicator working out for you boys?
Which indicator?
Boy Named Sue
How long do you want to ignore this user?
AG
$30,000 Millionaire said:

Indicator working out for you boys?
I favorited it but haven't played around with it yet. I'm still learning the TV app, so it'll probably take me longer than others
$30,000 Millionaire
How long do you want to ignore this user?
AG
Gold long working
$30,000 Millionaire
How long do you want to ignore this user?
AG
Also triggered short ES
$30,000 Millionaire
How long do you want to ignore this user?
AG
$30,000 Millionaire said:

Also triggered short ES


This worked too.
AgEng06
How long do you want to ignore this user?
AG
I don't know how much goes into it, but it would be awesome if you could.
Red Pear Luke (BCS)
How long do you want to ignore this user?
Sponsor
AG
First Republic is down 40% today, been halted multiple times today alone. JPM's Dimon is leading another round of capital infusion to help keep that ship stabilized....



$30,000 Millionaire
How long do you want to ignore this user?
AG
I should probably charge for this indicator
Boy Named Sue
How long do you want to ignore this user?
AG
$30,000 Millionaire said:

I should probably charge for this indicator
Well, it appears they think you broke some "House Rules" with it
Ragoo
How long do you want to ignore this user?
AG
How do I add in $30k's script?
smstork1007
How long do you want to ignore this user?
AG
In TV, click on indicators, then do a search for "intraday long short with TDI", then click on it and it will be added to your charts.
$30,000 Millionaire
How long do you want to ignore this user?
AG
They want a better description
JuanDurfel
How long do you want to ignore this user?
AG
it says,
"Script not available. We hid this script because it violates one or more of our House Rules."
for me.
smstork1007
How long do you want to ignore this user?
AG
It does seem they have hidden it for whatever reason. I have it up and running, and they have not pulled it from me, not sure if they even can. One way around this issue would probably to be making it an invite only script.
cryption
How long do you want to ignore this user?
It's still working for me but if I try to add it in again it tells me it's not available
$30,000 Millionaire
How long do you want to ignore this user?
AG
It sounds like I just need to update the description. I will try that this evening.
Towns03
How long do you want to ignore this user?
AG
cryption said:

It's still working for me but if I try to add it in again it tells me it's not available
I hope I'm not too late! It says unavailable...
FJ43
How long do you want to ignore this user?
$30,000 Millionaire said:

It sounds like I just need to update the description. I will try that this evening.


Mine still loaded and working into close.


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

Cookiemonster64
How long do you want to ignore this user?
30K, I could try to convert it to TOS if you shared the source. I'm not great at ThinkScript but have been trying to learn.
$30,000 Millionaire
How long do you want to ignore this user?
AG
ok, let's see if they punt this one:

https://www.tradingview.com/script/69hK9hrv-Long-Short-Strategy-with-TDI-based-on-EMA-cross-over/

irish pete ag06
How long do you want to ignore this user?
AG
It didn't work for me earlier. It works for me now! Thanks!
$30,000 Millionaire
How long do you want to ignore this user?
AG
I have been testing this a lot and well, here is how it did today with futures.


Ragoo
How long do you want to ignore this user?
AG
They did
$30,000 Millionaire
How long do you want to ignore this user?
AG
These guys want everything ope sourced, I think.
$30,000 Millionaire
How long do you want to ignore this user?
AG
Cookiemonster64 said:

30K, I could try to convert it to TOS if you shared the source. I'm not great at ThinkScript but have been trying to learn.
I couldn't get this to compile and I'm too lazy to do the rest. This is TOS.

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;

plot BuySignal = longEntry;
BuySignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
BuySignal.SetDefaultColor(Color.GREEN);

plot SellSignal = shortEntry;
SellSignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
SellSignal.SetDefaultColor(Color.RED);

jimmo
How long do you want to ignore this user?
I was able to find TDI on thinkscript... it works in TOS it appears.
all that would be required would be to combine the two signals then.. correct?
TDI >50 (or <50) & ema cross.
here's the TDI i found: TDI

Not sure, but here's a test run of the strategy:
TOS version

$30,000 Millionaire
How long do you want to ignore this user?
AG
Also created an RDR script if you all are interested. I just made this one open source so that I don't have to deal with those ufcking ass.hole moderators from TV

https://www.tradingview.com/script/6sRCerrb-30K-Red-Dog-Reversal/
$30,000 Millionaire
How long do you want to ignore this user?
AG
Ps - mods, I'm still waiting for you to remove the stupid and unnecessary profanity filter from this thread. TIA.
First Page Last Page
Page 6035 of 6739
 
×
subscribe Verify your student status
See Subscription Benefits
Trial only available to users who have never subscribed or participated in a previous trial.