I would like to ask if there is a way to implement a random entry signal in Building Block. I don't seem to have found the corresponding block or indicator.
Thanks in advance.
Thanks in advance.
Rename
Just an idea:
Most well known indicators deliver "random" signals, i.e. have absolutely no predictive power. Just use one of these in an "Indicator above/below value block. With "value" you will be able to adust hit probability.
Most well known indicators deliver "random" signals, i.e. have absolutely no predictive power. Just use one of these in an "Indicator above/below value block. With "value" you will be able to adust hit probability.
Suggestion:
ROC(1) shifted back 15 bars.
Use ROC(2) if you need some serial correlation.
ROC(1) shifted back 15 bars.
Use ROC(2) if you need some serial correlation.
1. Create a custom indicator using Tools > New Custom Indicator (C#) with a simple random number generator (built in .NET) and save it.
2. Restart WL8 with admin rights.
3. Use your random indicator as DrKoch suggests in Post #1. Voila.
2. Restart WL8 with admin rights.
3. Use your random indicator as DrKoch suggests in Post #1. Voila.
CODE:
Random rnd = new Random(); int _val = rnd.Next(1, 10); // creates a number between 1 and 10
QUOTE:
Most well known indicators deliver "random" signals,
Thanks Dr Koch,this is very inspiring.
And thanks Eugene,based on your code, I built custom indicators and they seem to be working fine so far!
Your Response
Post
Edit Post
Login is required