Tesla

Tesla and Chinese competitor BYD both reported a plummet in sales in a further signal the electric car industry is flailing - after Apple also recently pulled the plug on its own EV project.
 
Tesla's Cybertruck disaster: Insider reveals 'serious safety issues' behind scenes of EV rollout - as drone footage shows hundreds of unfinished trucks backed up at Texas factory
  • Tesla staff have disclosed 'serious safety issues' to an ex-employee
  • Ex-Tesla engineer and whistleblower is suing Tesla for defamation
  • Current engineers 'are afraid to say something is wrong'
  • READ MORE: Cybertruck flaw can CHOP OFF a passengers' fingers
 
Elon Musk's Tesla RECALLS nearly 4,000 Cybertrucks due to potentially fatal flaw
  • Tesla has officially recalled its Cybertruck after finding a flaw with the pedal
  • Approximately 3,878 vehicles are under the recall announced Friday
  • READ MORE: Elon Musk quietly confirmed that Cybertruck deliveries had halted
 
2 Year old news still relevant today

Screenshot from 2024-07-18 22-35-43.png
Screenshot from 2024-07-18 22-36-08.png
Screenshot from 2024-07-18 22-37-40.png



 
埃隆·马斯克的特斯拉因潜在致命缺陷召回近 4,000 辆 Cybertruck
  • 特斯拉因踏板存在缺陷正式召回 Cybertruck
  • 周五宣布召回的车辆约有 3,878 辆
  • 阅读更多:埃隆·马斯克悄悄证实Cybertruck 交付已停止
我非常同意。
 
I remain ever grateful to those who have posted practical knowledge. I look forward to the next billion years.

Note: Chart candy is not Ichimoku Cloud.
Tenkan-sen ~ Kijun-sen cloud coding (periods 100-150) by Phylo, aka File45
Magenta MA = 200-LWMA
Indicators downloads >>> https://www.forexfactory.com/thread/280525-kijun-sen-line-indicator

BTW: Kijun-sen and Tenkan-sen are one and the same indicator
Proof:
1. Attach Ichimoku indicator to chart. (note: Ichimoku was designed as a Daily period indicator).
2. Set Kijun-sen and Tenkan-Sen to same period (say, both 26) and set both lines to thickest.
3. Set all other line colors to 'None' - only KS & TS should have colors.
4. Only one indicator appears on the chart - the blue Kijun-sen is overlaid the red Tenkan-sen.
5. Change one indicator to, say 20 - two indicators now appear on the chart.

Green Indicators

The following commentary refers to MQL4 (MT4 Platform) code which is still widely in use and readily available in free unlimited demo for practice trading and code testing.

Most do not have access to paid-subscription platforms - example Sierra Chart. https://www.sierrachart.com/
USDJPY - 15 seconds
Screenshot from 2024-08-25 16-48-03.png

Commentary references specifications.
Screenshot from 2024-08-25 16-49-37.png


The green text info indicator on the right calculates -
  1. against a given Capital -
  2. the maximum allowed Volume/Lots and
  3. the associated Margin and Equity against said calculated maximum Volume/Lots.
For those interested in self coding I was going to give a detailed rundown. However, the code is not as straightforward as would seem to avoid rounding errors and ensure calculated values duplicate live market condition with 100% accuracy. Time is ever masterful.

In brief - some pointers. (disclaimer: all values are randomly assigned merely for illustrative calculation purposes)
The following illustrative for a single product - multiple product allocation is beyond the scope of discussion.

Capital = Equity (EQ) + Margin(MRG).
Which can be described as EQ available for trading and thus subject to risk
+
Non tradeable MRG, which is a broker collateral - reserve surrendered on entrance of position and collectable on exit of position.

Note: Margin (MRG) is considered - dead meat - non tradeable broker collateral. If trader is smelling 100% margin trader is definitely not bringing home bacon - trader IS the bacon and cook'n. Suffice, to say, not in a good way !*

* anyone, of course, is at liberty to trade as they choose - I would never consider interfering with anyone's right to trading self mutilation & disfigurement (literally- the figures and mood will be disfigured and mutilated).

RM = Risk Multiplier.
1. Any number multiplied by 100 will be 1 percent of the multiplication product/result. Proof 6 x 100 = 600. 6/600 x 100 = 1%. Thus an RM of 100 = 1%.
2. Any number multiplied by 050 will be 2 percent of the multiplication product/result. Proof 6 x 050 = 300. 6/300 x 100 = 2%. Thus an RM of 050 = 2%.

Both top & bottom calculations have an RM of 50 = 2%.
Note: SL distance in points, not pips. For US shares pips are non existent. $30.80 - $30.20 = $0.60 = 60 point price move. For FX: 1 pip = 10 points.
1. Top: Tradeable EQ = 42,505. SL value (SLv) = Vol x TV x Stop Loss distance(SLd) = 170.02 x 0.01 x 500 = 850.10.
850.10/42,505 x 100 = 2%.
850.10 x 50 = 42,505.
2. Bottom: Tradeable EQ = 42,500. SLv = Vol x TV x SLd = 170.00 x 0.01 x 500 = 850.00.
850.00/42,500 x 100 = 2%.
850.00 x 50 = 42,500.

Quantifiable Risk Units (numeric value of SL and its divide number into EQ) are easier to conceptualise and retain than nebulous references of %.
So - 850 represent 2% of initial tradeable EQ of 42,500.00 or 50 risk units at initial tradeable EQ of 42,500.00.
Numerically - in a perfect world of zero slippage and trading costs (commissions & swaps) aside, if a trader were to bang away at 50 consecutive losing trades (not a single profit 🥵) - without stop of trading to recalibrate-recalculate - trader would be down to 100% MRG = 7,491.90 (see image 3 line below).

The indicator shown is a test version - in finality, the only values required are the the 6 final values of the bottom 170.00 volume calculations.
Capital = Margin(MRG) + Equity (EQ)
The capital - which is input as required - is, in this instance, 50,000.
Screenshot from 2024-08-24 22-24-35.png

At 170.00 Volume/Lots MRG (7,491.90) = Capital of 49,991.90 used from the initial allotted* or available Capital of 50,000 and 8.10 remains spare capital.
* one may want to use, say, only, 50,000 of 70,000.

The right top calculation is always against micro lots and is a check reference.
The actual maximum allowed volume/lots calculation is 170.02754.
If this value is rounded to 2 decimal places it will be be 170.03. This value will result in EQ + MRG exceeding the available 50,000.
170.02754 has to be truncated at the 2nd decimal point - without rounding - to calculated values within the limits of 50,000.
Thus 170.02754 becomes 170.02. The test indicator displays this volume to 5 decimal places (170.02000) as a check that said Volume has be truncated at 2nd decimal.
The bottom calculation has to determine the product minimum Lot Step and minimum trading Lot Size - which, could be of same or different values.
Thus, the calculation code for the bottom calculations - in a number of instances - differs from that of the above calculation code.
If the bottom calculations reflects value for value in accordance with top calculations for a product with a micro lots as minimum Lot Step - Lot Size, all is well.

The second calculation is against the product minimum trading Lot Step/Volume Step and Lot Size/Volume Size. Which could be - 0.01, 0.10, 1.00, 10,00 etc.
For this broker, US shares is traded in 1.00 standard lot sizes - as indicated in the indicator info text on the left and the panel trader on the right.
Thus, US share volume representation will always be standard lot sizes - 1.00, 34.00, 267.00 etc.
The margin leverage for US shares is 1:5 or 1:20, depending how it is represented >> 1/5 = 0.2, 0.2 x 100 = 20%, 20/100 = 1/5 etc.,etc., (this, in line with UK ESMA requirements)

Required margin = volume x margin leverage x price. (Vol x (ML x Pr)* ) = (Vol x (0.2 x Pr)*)
Note: * ML (0.2 in this instance) must be rounded (not truncated) to product price digits or decimal places (shares xx.12, FX xx.12345 and in some instances Gold x.123), then the product of ML X Pr must be rounded to currency 2 digits or decimal places before multiplying by Vol.
There are more dark dungeon tortuous calculation procedures lurking beneath the surface.
1. 0.2 x Pr x Vol >> 0.2 = 0.20** >> (0.20 x 220.37) = 44.074 >> 44.074 x 170.00 = 7,492.58 ❌ ** this has no effect in this instance, but would on 0.033333333333 = x.12345 = 0.03333 for FX. Further, keep in mind that calculations for FX lot equivalents are in currency units (CU), not lots. 1 lot = 100,000 CU, 0.10 lots 10,000 CU and 0.01 lots 1,000 CU.
2. 0.2 x Pr x Vol >> 0.2 = 0.20 >> (0.20 x 220.37) = 44.07 >> 44.07 x 170 = 7,491.90 ✅
In the live environment if margin rises to exceed availability of equity against available capital the volume size will reduce in size in accordance with the required value adjustments.

The blue indicator code returns the specific margin value set by the broker. If the broker has #-up the code will return a #-up value and all calculations go #-up. Real world example. Broker has set everything to 1:30 or 1/30 margin leverage. To bring US shared at 20%, 1:5 or 1/5 = 0.2 - to correct value, the 1/30 has to be x by 6, 1/30 x 6 = 0.2. And all other products with different margins adjusted accordingly. This is a #'n headache.

Retail CFD products are synthetic products not traded on a central exchange - with rigorous standards - that singularly controls a product's trading specific metrics-parameter. Because retail brokers control their individual products, each broker is at liberty to assign any value to any specific metric-parameter as they choose. One broker may assign - for product A - a tick value (TV) of 25.00; another, 5.00; another, 1.0; and yet another, 0.01.
For the same product different brokers will assign a different minimum lot step; a minimum trading lot size; Tick Size; etc.. etc., etc. In the UK brokers must assign margin leverage in accordance with ESMA.

Retail brokers lack rigorous central standards and operate with appalling incompetence - numeric illiterate maintenance constantly implementing plain nonsense bs specific metrics. They get away with it because most retail traders, themselves, are numerically inadequate and ignorant regarding product specific metrics-parameters computation-calculation.

It will be seen by applying relevant calculations that increasing the Volume/Lots from 170.00 to 171.00 will result in MRG + EQ values exceeding the allotted or maximum available capital of 50,000.

M15 - vertical dot separation lines: weekly
The chart candle color candy is primary illustrative and indicative of general price movement-action: can but does not necessarily indicate entry or exit signals.
Screenshot from 2024-08-25 05-03-34.png
 
Last edited:
Tesla Investors Brace for Worst Financial Report in 7 Years
Historical review
Screenshot from 2024-08-24 23-48-51.png

Tesla Q1 2024 earnings results: Total revenues of $21.3 billion and $0.45 EPS​

Tesla (NASDAQ:TSLA) posted its Q1 2024 earnings report after markets closed today. The results, which were discussed in the Q1 2024 Update Letter, were released after the closing bell on Wednesday, April 23, 2024.

Tesla’s earnings come on the heels of a challenging quarter. During the first quarter, Tesla produced 433,371 vehicles and delivered 386,810 vehicles. Wall Street analysts expected 449,080 deliveries and 452,976 vehicles produced. Tesla noted in its Q1 vehicle delivery and production report that its challenges in the first quarter were partly due to the early phase of the updated Model 3 ramp at the Fremont factory, as well as shutdowns from shipping diversions caused by the Red Sea conflict and an arson attack at Gigafactory Berlin.

The following is a quick overview of Tesla’s Q1 2024 earnings results.

REVENUE

In the first quarter of 2024, Tesla posted total revenues of $21.3 billion, with automotive revenues at $17.3 billion. Bloomberg‘s analyst consensus expected Tesla to post a top-line revenue of $22.31 billion.

Tesla’s total revenue declined 9% YoY in Q1 to $21.3 billion, which was affected by a number of factors such as a reduced vehicle average selling price year-over-year, a decline in vehicle deliveries and growth in other parts of the company’s business.

EARNINGS PER SHARE

Tesla’s non-GAAP earnings per share for the first quarter of 2024 was listed at $0.45, while GAAP EPS for Q1 2024 was listed at $0.34. In comparison, Bloomberg‘s analyst consensus expected Tesla to post adjusted earnings per share of $0.52.

PROFITABILITY

Tesla’s operating income decreased year-over-year to $1.2 billion in the first quarter of 2024, resulting in a 5.5% operating margin. Specifically, Tesla posted $1.2 billion GAAP operating income in Q1, $1.1 billion GAAP net income in Q1, and $1.5 billion non-GAAP net income in Q1.

Tesla’s profitability in the first quarter was affected by reduced vehicle ASP due to pricing and mix, an increase in operating expenses partly driven by AI, cell advancements, and other R&D projects, and the cost of the Cybertruck production ramp, among other reasons.

CASH​

Tesla’s quarter-end cash, cash equivalents, and investments in Q1 2024 was $26.9 billion. Tesla notes that the sequential decrease of $2.2 billion in its cash was a result of negative free cash flow of $2.5 billion, which was driven by an inventory increase of $2.7 billion and AI infrastructure capex of $1.0 billion.

Tesla investors seem to have taken the company’s Q1 2024 earnings results positively. As of writing, TSLA shares are trading up 5.75% at $153.09 per share.


TradingView Charts: https://www.tradingview.com
Screenshot from 2024-08-24 23-47-25.png
 
Last edited:
Top