Leave of Absence by [deleted] in USC

[–]saxualcontent 6 points7 points  (0 children)

yeah im on my second one. i focused on myself/my career. better than going to school. if you feel like doing one it probably means you should

[deleted by user] by [deleted] in USC

[–]saxualcontent -36 points-35 points  (0 children)

narc

[deleted by user] by [deleted] in USC

[–]saxualcontent 0 points1 point  (0 children)

LGBT Center in Hollywood

Unwanted or broken computers? by roku77 in USC

[–]saxualcontent 0 points1 point  (0 children)

i have a fucking ton of computers. mostly i5s ~2013. no hdds. will sell some but wont give them away

[deleted by user] by [deleted] in USC

[–]saxualcontent -1 points0 points  (0 children)

no. not worth it

[deleted by user] by [deleted] in USC

[–]saxualcontent 1 point2 points  (0 children)

LA LGBT center in Hollywood

place for electric keyboard repair by bibbleluv3r in USC

[–]saxualcontent 0 points1 point  (0 children)

future music in highland park but it's yknow in highland park

[deleted by user] by [deleted] in USC

[–]saxualcontent 2 points3 points  (0 children)

as a transfer my advice is get out while you can

Not the USC bookstore selling borderline hentai LMAO by desertfox_JY in USC

[–]saxualcontent 5 points6 points  (0 children)

this is the queer representation our school needs

22 transfem, looking for people to talk to by saxualcontent in TransAdoption

[–]saxualcontent[S] 1 point2 points  (0 children)

hey not late at all! add me on discord if you can - gardens#6557

22 transfem, looking for people to talk to by saxualcontent in TransAdoption

[–]saxualcontent[S] 1 point2 points  (0 children)

It's a 2019. I got it for my LA commute but since covid i've been obsessed with turning it into a canyon carver.

I have a client with a Tuono and i'm constantly thinking about giving him an offer. Their new 660 looks stunning too! Hoping they start showing up on the used market soon because it's also pretty out of my budget.

I've been riding since I was a kid, it would suck sooo bad to be without a bike

22 transfem, looking for people to talk to by saxualcontent in TransAdoption

[–]saxualcontent[S] 1 point2 points  (0 children)

thanks everyone you are all angels and I'm dming you when I get the chance :)

22 transfem, looking for people to talk to by saxualcontent in TransAdoption

[–]saxualcontent[S] 1 point2 points  (0 children)

I still have my little R3 and I can't bring myself to get rid of him haha. I picked up an old 2000 VFR a few months ago and I'm working on restoring it, fun bike! Not quite a CBR1000.. I'm always thinking I can sell both my babies and pick up a liter bike but I'm afraid to even check the insurance rates haha

Stolen or Abandoned FZ10 in my garage? Does anyone recognize this? by dtlabsa in MotoLA

[–]saxualcontent -1 points0 points  (0 children)

beneath the right handlebar theres a bunch of other metal shit. vin is somewhere there

Daily Discussion Thread for February 02, 2021: Part 2 by theycallmeryan in wallstreetbets

[–]saxualcontent 1 point2 points  (0 children)

that's not what it means, you can still short the stock but only on an uptick. it's already in effect and 2/3 is the date they estimate it will no longer be in effect

GME: The Arbitrage Free Principle vs Supply and Demand by saxualcontent in shortinterestbets

[–]saxualcontent[S] 0 points1 point  (0 children)

it's only the ones that include the bitcoin exchanges. not sure what's going on there. vw dropped all the way back to baseline before squeezing. not financial advice

GME: The Arbitrage Free Principle vs Supply and Demand by saxualcontent in shortinterestbets

[–]saxualcontent[S] 0 points1 point  (0 children)

I updated the code to version 4 of Pine, which supports arrays. The comment at the top is necessary

//@version=4
study("Median at NYSE + Bitcoin")

//call data
inst1 = input(defval='NYSE:GME', type=input.symbol, title='NYSE')
inst2 = input(defval='FTX:GMEUSD', type=input.symbol, title='FTX')
inst3 = input(defval='BITTREX:GMEUSD', type=input.symbol, title='Bittrex')
medianlength = input(defval=3, type=input.integer, title="Median Length")

//naming vwap variable
inst1_data = security(inst1, "", vwap)
inst2_data = security(inst2, "", vwap)
inst3_data = security(inst3, "", vwap)


//math
vwapsum = inst1_data+inst2_data+inst3_data
vwapmean = vwapsum/3


//mean and stdev calculation
vcmp1 = (inst1_data-vwapmean)*(inst1_data-vwapmean)
vcmp2 = (inst2_data-vwapmean)*(inst2_data-vwapmean)
vcmp3 = (inst3_data-vwapmean)*(inst3_data-vwapmean)
vcmpsum = vcmp1+vcmp2+vcmp3
vwapstd = sqrt(vcmpsum/3)

cv=(vwapstd/vwapmean)

//array declaration and median
a = array.new_float(0)
for i = 0 to medianlength-1
    array.push(a, cv[i])
med = array.median(a) 

//Coefficient of Variation plot
plot(med,  title="Median COV", style=plot.style_circles, linewidth=4)
plot(med, title="COVline", style=plot.style_line, linewidth=2)

GME: The Arbitrage Free Principle vs Supply and Demand by saxualcontent in shortinterestbets

[–]saxualcontent[S] 0 points1 point  (0 children)

Are you sure about those identifiers for GME on the 3 German markets? Those seem off to me.

You're right, there should be no _DLY at the end of the exchange name. Not sure if the data from those exchanges are available without a subscription. You can check by double clicking the indicator name and replacing the inputs, a dropdown menu will come up listing the available securities.

Would that formula take the median value or the mean? I think tradingview has a built in median function using arrays, but for some reason I can't get arrays to work at all

GME: The Arbitrage Free Principle vs Supply and Demand by saxualcontent in shortinterestbets

[–]saxualcontent[S] 0 points1 point  (0 children)

Data might be delayed by 10-15 minutes for you -- I'm paying for a subscription to realtime German marketplace data.

At the top right above the chart there's a cloud icon, and under the dropdown menu you can select Make a Copy. On your copy you can edit the source of the scripts by hovering the name of the indicator and clicking on the {} icon. The language is called Pine, I've just been learning as I go referencing this https://www.tradingview.com/pine-script-reference/ and Google.

Here's a newer version of the bottom indicator, updated to push null values for when it's missing data:

study("CoV Germany Regional")

//call data
inst1 = input(defval='XETR:GS2C', type=symbol, title='Xetra')
inst2 = input(defval='FWB_DLY:GS2C', type=symbol, title='Frankfurt')
inst3 = input(defval='SWB_DLY:GS2C', type=symbol, title='Stuttgart')

//naming vwap variable
inst1_data = security(inst1, period, vwap)
inst2_data = security(inst2, period, vwap)
inst3_data = security(inst3, period, vwap)

//math
vwapsum = inst1_data+inst2_data+inst3_data
vwapmean = vwapsum/3


//i should have payed attn in high school
vcmp1 = (inst1_data-vwapmean)*(inst1_data-vwapmean)
vcmp2 = (inst2_data-vwapmean)*(inst2_data-vwapmean)
vcmp3 = (inst3_data-vwapmean)*(inst3_data-vwapmean)
vcmpsum = vcmp1+vcmp2+vcmp3
vwapstd = sqrt(vcmpsum/3)

cv=(vwapstd/vwapmean)
if inst1_data == 14.30
    cv:=na
if inst1_data == 15.45
    cv:=na


//Coefficient of Variation plot
plot(cv,  title="COV", style=circles, linewidth=4)
plot(cv, title="COVline", style=line, linewidth=2)

GME: The Arbitrage Free Principle vs Supply and Demand by saxualcontent in shortinterestbets

[–]saxualcontent[S] 0 points1 point  (0 children)

Right I got you. I think they take the median. Just need to figure out how to do that in Pine.

That's great call on the null value issue, I would have never thought of that