forex:probability
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
forex:probability [2022/12/15 11:11] – 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 44: | 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 51: | 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.1671102719.txt.gz · Last modified: 2022/12/15 11:11 by peter