docs: update documentation to reflect Inverse ETP strategy and virtual balance logic

This commit is contained in:
pie
2026-05-07 11:59:50 +01:00
parent deba044a7b
commit 1cfca22ddd
3 changed files with 90 additions and 98 deletions
+29
View File
@@ -0,0 +1,29 @@
# Mapping of standard US Stock tickers to their 3x Short Inverse ETP counterparts on Trading212 (USD versions)
INVERSE_TICKER_MAP = {
"TSLA": "3STSl_EQ", # GraniteShares 3x Short Tesla
"NVDA": "3SNVl_EQ", # GraniteShares 3x Short NVIDIA
"AAPL": "3SAPl_EQ", # GraniteShares 3x Short Apple
"AMZN": "3SAMl_EQ", # GraniteShares 3x Short Amazon
"NFLX": "3SNFl_EQ", # GraniteShares 3x Short Netflix
"MSFT": "3SMSl_EQ", # Leverage Shares -3x Short Microsoft
"GOOGL": "3SGOl_EQ", # Leverage Shares -3x Short Alphabet
"META": "3SMEl_EQ", # Leverage Shares -3x Short Facebook META
"MSTR": "3SMIl_EQ", # GraniteShares 3x Short MicroStrategy
"PLTR": "3SPAl_EQ", # GraniteShares 3x Short Palantir
"AMD": "SAMDl_EQ", # Leverage Shares -1x AMD (Note: 3x not available in USD for AMD, using -1x)
}
# Leverage factors for the mapped tickers
LEVERAGE_MAP = {
"3STSl_EQ": 3.0,
"3SNVl_EQ": 3.0,
"3SAPl_EQ": 3.0,
"3SAMl_EQ": 3.0,
"3SNFl_EQ": 3.0,
"3SMSl_EQ": 3.0,
"3SGOl_EQ": 3.0,
"3SMEl_EQ": 3.0,
"3SMIl_EQ": 3.0,
"3SPAl_EQ": 3.0,
"SAMDl_EQ": 1.0,
}