forex:probability
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
forex:probability [2022/12/15 11:09] – created peter | forex:probability [2022/12/15 11:26] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Forex - Probability ====== | ====== Forex - Probability ====== | ||
+ | |||
+ | Trading is thinking in probabilities and finding setups that make money. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Positive Expectancy ===== | ||
+ | |||
+ | * You may not make money on the trade right now, or even the next one, but if it makes money over the long run (has positive expectancy). | ||
+ | |||
+ | * You could have a system which is 35% accurate which still makes money (and a lot of it) over time. | ||
+ | |||
+ | * Get comfortable with uncertainty, | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Probability ===== | ||
+ | |||
< | < | ||
- | Probability = Profitable Trades | + | |
- | ----------------- | + | probability = ------------------- |
- | Total Trades | + | |
</ | </ | ||
Line 15: | Line 32: | ||
< | < | ||
6 | 6 | ||
- | probability = ----- | + | probability = ----- |
9 | 9 | ||
</ | </ | ||
+ | |||
+ | ---- | ||
What is the probability of winning for a future trade? | What is the probability of winning for a future trade? | ||
Line 26: | Line 45: | ||
< | < | ||
- | (6+1) | + | (6+1) 6 |
- | probability = ------- | + | probability = ------- |
- | (9+1) | + | (9+1) (9+1) |
</ | </ | ||
Line 42: | Line 61: | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: This is slightly less than the original value of 6/9. | + | **NOTE**: This is slightly less than the original value of 6/9. |
* This method is called Laplace smoothing. | * This method is called Laplace smoothing. | ||
Line 49: | Line 68: | ||
+ | ---- | ||
+ | |||
+ | ===== Smoothing using Weights ===== | ||
+ | |||
+ | <code c++> | ||
+ | double value=price[i+center], | ||
+ | | ||
+ | |||
+ | for(int j=0; j< | ||
+ | { | ||
+ | weight[j]=MathAbs(value-price[i+j]); | ||
+ | max=MathMax(max, | ||
+ | } | ||
+ | |||
+ | double width=(period+1)*max/ | ||
+ | sum=0, | ||
+ | denom=0; | ||
+ | |||
+ | for(int j=0; j< | ||
+ | { | ||
+ | if (Smoothing==Linear) | ||
+ | weight[j]=1-weight[j]/ | ||
+ | |||
+ | if (Smoothing==Quadratic) | ||
+ | weight[j]=1-MathPow(weight[j]/ | ||
+ | |||
+ | if (Smoothing==Exponential) | ||
+ | weight[j]=MathExp(-weight[j]/ | ||
+ | |||
+ | sum=sum+weight[j]*price[i+j]; | ||
+ | denom=denom+weight[j]; | ||
+ | } | ||
+ | |||
+ | buffer[i]=sum/ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | https:// |
forex/probability.1671102583.txt.gz · Last modified: 2022/12/15 11:09 by peter