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:16] – 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 ===== | ||
+ | |||
< | < | ||
Line 53: | Line 70: | ||
---- | ---- | ||
- | Smoothing using Weights | + | ===== Smoothing using Weights |
<code c++> | <code c++> | ||
- | double value=price[i+center],// | + | double value=price[i+center], |
- | | + | |
- | for(int j=0; j< | + | |
- | { | + | |
- | | + | |
- | | + | |
- | } | + | |
- | double width=(period+1)*max/ | + | for(int j=0; j< |
- | | + | { |
- | | + | weight[j]=MathAbs(value-price[i+j]); |
- | for(int j=0; j< | + | max=MathMax(max, weight[j]); |
- | { | + | } |
- | if(Smoothing==Linear)// | + | |
- | weight[j]=1-weight[j]/ | + | |
- | if(Smoothing==Quadratic)// | + | |
- | weight[j]=1-MathPow(weight[j]/width,2); | + | |
- | if(Smoothing==Exponential)// | + | |
- | weight[j]=MathExp(-weight[j]/width); | + | |
- | sum=sum+weight[j]*price[i+j]; | + | double width=(period+1)*max/ |
- | | + | sum=0, |
- | } | + | denom=0; |
- | buffer[i]=sum/ | + | 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.1671102960.txt.gz · Last modified: 2022/12/15 11:16 by peter