Charts are tangible, objective and predictable! Test me!

Status
Not open for further replies.
The statement "Ladies are better investors in the stock trading market than men because they have better emotional intelligence" suggests that women possess superior emotional intelligence compared to men and that this characteristic translates into better investment outcomes in the stock trading market.

Emotional intelligence refers to the ability to recognize, understand, and manage emotions in oneself and others. It encompasses skills such as self-awareness, empathy, and emotional regulation. While emotional intelligence can be beneficial in various aspects of life, including decision-making, it is important to note that investment success is influenced by multiple factors.

Claiming that women are better investors solely based on emotional intelligence oversimplifies the complexities of the stock trading market. Successful investing requires a combination of factors, including financial knowledge, research skills, risk assessment, and decision-making abilities. These skills are not limited to a specific gender and can be developed and refined by individuals of all backgrounds.

It is crucial to avoid generalizations and stereotypes when discussing gender and investment performance. Each investor, regardless of gender, possesses a unique set of skills, experiences, and strategies that influence their investment outcomes. Evaluating investment performance should be based on individual merits, knowledge, and experience rather than broad assumptions about gender.

In conclusion, while emotional intelligence can play a role in investment decision-making, it is one of several factors to consider. It is important to recognize that investment success depends on a wide range of skills and characteristics that can be developed by individuals of any gender.

Good one again!
 
@rajesheck

If the first hidden chart was partial and disqualified for reading, you should have flatly declined to read it.

If what you wrote about the second hidden chart is true, you should have DRAWN the second support/resistance breakout levels. (Since I do not trade options, I have no idea what would have happened had a trader remained in this position TOO long.)

If what you wrote about the third one was true, you should have DRAWN the second support breakout level, and DRAWN the third support breakout level.

All this talk AFTER the fact, from my perspective, is just so much blather. You might be a serious trader, but to me, this thread kind of feels more like a parlor game.
 
No one can predict the future. What we can do is under defined technical conditions know what is more likely to happen. That along with a structured trade plan and the appropriate disciplines are all that's needed. The problem is most will fail to secure one or more of those conditional factors.

Maybe you meant to say "No one can predict the future with 100 % accuracy 100 % of the time". If so, I obviously agree.

Prediction/forecasting is generally about probabilities, though. Even if you have a high probability prediction at 80 % chance, you'll still be wrong 2 times out of 10.

It seems to be a controversial topic on ET, but even a basic trend system is based on prediction in the sense that you're expecting the trend to continue.

And for those using set-ups (tested and trialed, I assume), there's still a probability set associated with them, i.e., it's successful 6 out of 10 times in back-testing/forward-testing with a 2:1 win ratio. Essentially, you're predicting an outcome with known probabilities... :)

I like prediction.
 
@rajesheck

If the first hidden chart was partial and disqualified for reading, you should have flatly declined to read it.

If what you wrote about the second hidden chart is true, you should have DRAWN the second support/resistance breakout levels. (Since I do not trade options, I have no idea what would have happened had a trader remained in this position TOO long.)

If what you wrote about the third one was true, you should have DRAWN the second support breakout level, and DRAWN the third support breakout level.

All this talk AFTER the fact, from my perspective, is just so much blather. You might be a serious trader, but to me, this thread kind of feels more like a parlor game.

If you have noticed i responded to one of the post about devil's details...i said my predictions are based on second support/resistance breakout.

My style of communication is not to flood overload info and instead build conversation as needed by the group.
 
To create a more advanced predictive indicator in MultiCharts PowerLanguage, you can utilize machine learning techniques such as regression or classification algorithms. Here's an example of how you can implement a linear regression-based predictive indicator:

powerlanguage
inputs:
LookbackPeriod(10); // Number of bars used for training

variables:
RegressionCoeff(0), // Coefficient of the regression line
Intercept(0), // Intercept of the regression line
Prediction(0); // Predicted value

if CurrentBar > LookbackPeriod then begin
// Perform linear regression using the past data
LinearRegression(Close, LookbackPeriod, RegressionCoeff, Intercept);

// Predict the next bar's value
Prediction = RegressionCoeff * (CurrentBar - LookbackPeriod) + Intercept;

// Plot the regression line
Plot1(RegressionCoeff * (CurrentBar - LookbackPeriod) + Intercept, "Regression Line", blue);

// Plot the predicted value
Plot2(Prediction, "Prediction", green);

// Generate buy or sell signals based on the predicted value
if Close > Prediction then
Buy("BuySignal") next bar at market
else if Close < Prediction then
SellShort("SellSignal") next bar at market;
end;

In this example, the indicator uses the LinearRegression function to perform linear regression on the past LookbackPeriod bars of the closing prices. It then calculates the predicted value for the next bar based on the regression line equation. The indicator plots both the regression line and the predicted value on the chart. It also generates buy or sell signals based on whether the current price is above or below the predicted value.

Keep in mind that this is a simplified example, and you may need to adapt it based on your specific requirements and the machine learning techniques you intend to use. Additionally, you may need to consider other factors such as data preprocessing, feature selection, and model evaluation to build a more robust and accurate predictive indicator.
 
Maybe you meant to say "No one can predict the future with 100 % accuracy 100 % of the time". If so, I obviously agree.

Prediction/forecasting is generally about probabilities, though. Even if you have a high probability prediction at 80 % chance, you'll still be wrong 2 times out of 10.

It seems to be a controversial topic on ET, but even a basic trend system is based on prediction in the sense that you're expecting the trend to continue.

And for those using set-ups (tested and trialed, I assume), there's still a probability set associated with them, i.e., it's successful 6 out of 10 times in back-testing/forward-testing with a 2:1 win ratio. Essentially, you're predicting an outcome with known probabilities... :)

I like prediction.
I realize our time is valuable here on ET :D but my comment went on beyond the first sentence.
 
If you have noticed i responded to one of the post about devil's details...i said my predictions are based on second support/resistance breakout.

My style of communication is not to flood overload info and instead build conversation as needed by the group.
No problem there. More like underflow info. :confused:
 
My style of communication is not to flood overload info and instead build conversation as needed by the group.
May the group that needs your conversation be greatly edified by the contribution of your information-light communication style. Clearly, I visited the wrong thread (I thought the whole point was to show that charts are tangible, objective and predictable) but more power to you, my good man.
 
Business is 80% mindset and 20% skills.

Not...

80% emoting and 20% thinking!

That is not a productive behaviour for traders!

People who participated in this thread so far expressed 80% emoting and 20% thinking.
 
Status
Not open for further replies.
Back
Top