How to do quantitative analysis. Step by step

Jason Voorhees

Jason Voorhees

𝕯𝖝𝕯 π–ˆπ–—π–Šπ–œ π•΅π–Šπ–˜π–™π–Šπ–—
Joined
May 15, 2020
Posts
54,819
Reputation
148,691
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price like in those stock market charts. You need to study them

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 3:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 4

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 5

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 6

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 7

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole, you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but hey if you think you have 0 social life and have some insanely genius strategy that would work and are high IQ enough maybe you can struck gold with this. Good luck!
 
Last edited:
  • +1
  • JFL
  • Love it
Reactions: lestoa, pprimus43, moggerofhumanity and 34 others
no qualitative analysing my subanimal facial structure
 
  • +1
Reactions: moggerofhumanity, GigaStacySexual, EthiopianMaxxer and 10 others
@666PSL @Chadeep @deadstock @Seth Walsh @Brus Wane @moggerofhumanity @deadstock @One Rep Max @Shahnameh
 
  • +1
Reactions: Sprinkles, menas, loyolaxavvierretard and 4 others
@SecularIslamist @sigma boii @vernier @War_In_Chiraq @Panzram
 
  • +1
  • JFL
Reactions: sigma boii, Sprinkles, menas and 4 others
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price.

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 5:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 6

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 7

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 8

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 9

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but if you think you are a no lifer and are high IQ enough maybe you can struck gold with this. Good luck!
IQ mogs me
 
  • +1
  • JFL
Reactions: Elijah_leo, loyolaxavvierretard, War_In_Chiraq and 1 other person
@DarkAscender @Sprinkles @Wombles @TechnoBoss @loyolaxavvierretard
 
  • +1
Reactions: TechnoBoss, DarkAscender, menas and 3 others
11


Just be top competitive programmer Jiang Lingyu and program your own quant fund for infinite betabuxx punani theory.
 
  • JFL
  • +1
Reactions: iblamemichaeI, shia.jihadist, moggerofhumanity and 7 others
The only problem is that young man you made a typing mistake. Apparently the guide goes from step 2 to step 5 . Change that. Other than that I think this is a banger of a post and should be pinned in botb. Better than all financial botb threads easily
 
Last edited:
  • +1
  • JFL
Reactions: moggerofhumanity, condommaxxing, menas and 2 others
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price.

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 5:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 6

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 7

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 8

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 9

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole, you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but hey if you think you have 0 social life and have some insanely genius strategy that would work and are high IQ enough maybe you can struck gold with this. Good luck!

@DarkAscender @Sprinkles @Wombles @TechnoBoss @loyolaxavvierretard

>gets accused of rep farming
>makes elaborate maths thread which is high iq to an extent
>proceeds to tag 15 people which invalidates his points entirely
:lul:
 
  • +1
  • JFL
Reactions: moggerofhumanity, EthiopianMaxxer, Alias! and 4 others
If this thread is not pinned, then it has indeed been confirmed that the mods were hellspawns of donkeys and boars
 
  • +1
Reactions: menas and Jason Voorhees
Dnr post someone dying again
 
  • +1
  • Love it
  • JFL
Reactions: moggerofhumanity, EthiopianMaxxer, Wombles and 4 others
I saw a light in this post. A light of a user that shined bright in the desolation here. Have I just witnessed the og Preston ?
 
Last edited:
  • +1
Reactions: menas and Jason Voorhees
Managing your positions with your left hand on the Bible >>>
 
  • +1
Reactions: menas, loyolaxavvierretard and Jason Voorhees
The only problem is that young man you made a typing mistake. Apparently the guide goes from step 2 to step 5 . Change that. Other than that I think this is a banger of a post and should be pinned in botb. Better than all financial botb threads easily
Fixed. Thx for pointing out
 
  • +1
Reactions: moggerofhumanity, menas and loyolaxavvierretard
Roosevelt is thinking of learning computers to make money
 
  • +1
Reactions: moggerofhumanity, menas, wishIwasSalludon and 1 other person
>gets accused of rep farming
>makes elaborate maths thread which is high iq to an extent
>proceeds to tag 15 people which invalidates his points entirely
:lul:
I just want to show people that I can post shit other than degenerate gore.
 
  • +1
  • JFL
  • Hmm...
Reactions: moggerofhumanity, Sprinkles, menas and 2 others
@Debetro @NoReedemingFeature
 
  • +1
Reactions: Sprinkles, menas, loyolaxavvierretard and 1 other person
I think niggas will now accuse you of ai generating your threads
 
  • +1
Reactions: moggerofhumanity, Wombles, menas and 2 others
I think niggas will now accuse you of ai generating your threads
Yes because AI will not get crucified for saying nigger, faggot and other slurs I used in the post
 
  • +1
Reactions: moggerofhumanity, Sprinkles, menas and 2 others
@wishIwasSalludon @William Anderson
 
  • +1
Reactions: Sprinkles, menas and loyolaxavvierretard
You should not take these things to heart son. People are jealous that you were here in the heyday and now are using this forum to your wish
 
  • +1
  • JFL
Reactions: Wombles, Sprinkles, menas and 1 other person
Bookmarked and will read
 
  • +1
Reactions: menas, Jason Voorhees and loyolaxavvierretard
  • +1
Reactions: Sprinkles, menas and wishIwasSalludon
@menas @lestoa @hopecel
 
  • +1
  • Hmm...
Reactions: lestoa, hopecel, Sprinkles and 1 other person
Screenshot 2025 04 02 222729
 
  • +1
  • JFL
Reactions: loyolaxavvierretard and Jason Voorhees
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price.

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 3:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 4

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 5

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 6

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 7

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole, you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but hey if you think you have 0 social life and have some insanely genius strategy that would work and are high IQ enough maybe you can struck gold with this. Good luck!
too high iq shit for me but mirin the effort.. :Comfy:
 
Last edited:
  • +1
  • JFL
Reactions: Alias!, Jason Voorhees, Sprinkles and 1 other person
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price.

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 3:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 4

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 5

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 6

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 7

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole, you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but hey if you think you have 0 social life and have some insanely genius strategy that would work and are high IQ enough maybe you can struck gold with this. Good luck!
IMG 1954
 
  • JFL
  • +1
Reactions: Alias!, Jason Voorhees and loyolaxavvierretard
@psychomandible @PsychoH @klip11
 
  • +1
Reactions: psychomandible, loyolaxavvierretard and PsychoH
@Angutoid
 
  • +1
Reactions: loyolaxavvierretard and Angutoid
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price.

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 3:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 4

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 5

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 6

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 7

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole, you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but hey if you think you have 0 social life and have some insanely genius strategy that would work and are high IQ enough maybe you can struck gold with this. Good luck!
i want to read but i have to dnr since i'm fucking sick of even thinking about numbers rn. studying late for that math test almost buttfucked me but i gave the guy mostly good results. And here i am still studying chemistry after a depriving night of programming ugh.
 
  • +1
Reactions: Jason Voorhees and loyolaxavvierretard
  • +1
Reactions: loyolaxavvierretard and Angutoid
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price.

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 3:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 4

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 5

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 6

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 7

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole, you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but hey if you think you have 0 social life and have some insanely genius strategy that would work and are high IQ enough maybe you can struck gold with this. Good luck!
Black people invented the following:
Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.
 
  • JFL
  • +1
Reactions: hopecel, loyolaxavvierretard and Jason Voorhees
Not a single planck length
 
  • +1
Reactions: klip11, loyolaxavvierretard and Jason Voorhees
Nice repfarming + water knowledge
Not water at all many of the libraries I mentioned are quite new . I saved niggas weeks worth of research.
 
  • +1
Reactions: klip11 and loyolaxavvierretard
@Alias!
 
  • +1
Reactions: loyolaxavvierretard
Thank you bro I just made a million dollars after reading this post :feelsokman:
 
  • +1
Reactions: loyolaxavvierretard and Jason Voorhees
  • JFL
  • +1
Reactions: loyolaxavvierretard and hypernormie
Since niggas accused me of making rep farms and posting gore all the time. Here is a high IQ high effort thread from me. Let's start with prerequisites to start quantitative analysis

What you'd need. A strong math background. You need advanced atleast graduate level knowledge on

-Probability
-Linear algebra
-Calculus 1 and 2
-Time series analysis.


So if you are uncomfortable with math or not good with numbers to put it bluntly don't bother because you'd have 0 clue what is going on and end up losing a shit ton of money.

Software to run the algorithms. Python is the most common. You'd also need to Install these libraries

-numpy, pandas - Helps in Data handling.

-matplotlib, seaborn-To visualize data

-scipy.stats- gives you ready-made functions.

'yfinance - To Download stock market data.

β€’ TA-Lib - To compile technical indicators.

backtrader, zipline-For backtesting trading strategies.

You also need have a full understanding of stocks options bonds, portfolio theory and market microstructure.

A good book I'd recommend for this would be. Quantitative Trading by Ernest Chan.


Now for quantitative analysis

Step-1

Get historical stock data from Yahoo Finance/Alpha Vantage/ Quandl. Market data is often incomplete or contains errors. This data can be filled through various functions in the pandas libraries. Z Score methods etc. Won't get into too kuch detail if you are good with math you already know all of this


Step 2

This is the trickiest part. You need to analyze trends & patterns in the market. You can use moving averages Bollinger Bands, and momentum indicators to identify profitable
setups. The most commonly used ones are

-Descriptive statistics :Mean, median, standard deviation. If you studied high school math you should be knowing this.

-Correlation & Regression: Identifies the relationships between stocks. Same applies high school math.

-Moving Averages: SMA, EMA which Simple Moving Average and EMA stands for Exponential Moving Average. It sounds complicated but if you studied Time series analysis in college. You should be knowing this

-Volatility Analysis: ATR, Bollinger Bands.. ATR is Average True Range and Bollinger Bands. ATR focuses on the average price movement while Bollinger Bands use standard deviation from a moving average to create bands around the price.

Once you have Identifies patterns and have found profitable setups you can go to developing a strategy

Step 3:

Develop a Trading Strategy. The most common ones are

-Mean Reversion: Buy low, sell high.

-Momentum Trading: Follow the trend.

-Pairs Trading: Exploit correlated stocks. You calculate the Pearson correlation coefficient between stock pairs to identify strong positive or negative correlations. A correlation above 0.8 suggests a strong relationship.

There are also more advanced Trading strategies that people use but since you are starting. I'd only recommend you to follow one of these three


Step 4

Testing. I can't stress this enough. You need to always test your strategy on past data to see if it would have worked because history repeats itself niggers. Some useful statistics to look at would be Sharpe Ratio, max drawdowns, and risk-adjusted returns. You can use chatgpt to understand what exactly these things are


Step 5

Use machine learning to enhance predictions. Run your strategies thorough an ML software with deep learning algorithms like neural networks, LSTMs etc. Again won't go too much in depth because you can write an entire book on these things alone

Step 6

It is now finally time to Deploy & Trade Live. You can use broker APIs like Alpaca to execute trades automatically. Use python scripts and api calls to place orders Start with paper trading a few times before going live.

Step 7

Monitoring. Use web hooks and other applications to monitor your stocks and get notifications. You can get the codes for these on chatgpt


Now, since some faggots will call me jewish shill and ask me why I am not a millionaire doing this. No I haven't done quantitative analysis myself because I frankly don't have the patience for this and I do have a life outside of crunching number everyday. I simply dont have the mental capacity to grind this hard with no clear payoff. Many people spend years refining their strategies and the competition is brutal, specially in fields like high-frequency trading and financial derivatives.

If you don't enjoy constantly crunching numbers debugging code and refining models dont look in this direction. Some quants do make insane amounts of money, but most either burn out, fail. It is a deep rabbit hole, you can spend years doing all of this and still not get good at it. Quantitative Analysis is too time consuming and head breaking for me but hey if you think you have 0 social life and have some insanely genius strategy that would work and are high IQ enough maybe you can struck gold with this. Good luck!
IMG 1186
 
  • +1
Reactions: loyolaxavvierretard and Jason Voorhees
Chad dichotomizes a linear regression and makes $300k while anally violating your oneitis
 
  • +1
Reactions: loyolaxavvierretard and Jason Voorhees
  • JFL
Reactions: loyolaxavvierretard
  • Hmm...
  • JFL
Reactions: hopecel and loyolaxavvierretard
Not a single planck length

Wonder who this meme comes from.

Potentially the most infamous user in PSL history who's dick you have in your mouth every time you use it.
 
  • +1
Reactions: Jason Voorhees

Similar threads

got.daim
Replies
8
Views
105
got.daim
got.daim
ggg.tv🀫
Replies
8
Views
168
recai iskender
recai iskender
got.daim
Replies
5
Views
90
got.daim
got.daim
got.daim
Replies
2
Views
135
FacialStructure404
FacialStructure404
got.daim
Replies
47
Views
277
Hitlerstopguy05
Hitlerstopguy05

Users who are viewing this thread

Back
Top