- ago
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.
0
160
4 Replies

Reply

Bookmark

Sort
- ago
#1
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.
0
- ago
#2
Suggestion:
ROC(1) shifted back 15 bars.
Use ROC(2) if you need some serial correlation.
0
- ago
#3
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.

CODE:
Random rnd = new Random(); int _val = rnd.Next(1, 10); // creates a number between 1 and 10
1
- ago
#4
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!
0

Reply

Bookmark

Sort