Help with custom algorithm
Posted: Wed Feb 05, 2014 11:13 am
Hello,
who can help me to write a custom trade algorithm. The main idea is to boost big traders and maintain small ones.
I think about Uniq * (PordTG + constant1) + constant2. I will use constant1 for "boost" and constant2 for maintain.
For ex.
trader 1 (not bad trader)
Raws Uniq ClkT ClkG Out T
133 92 47 185 805
His ProdTG is 1.7
So i would like to send him 248 insted of 805.
92 * (1.7 + 1) + 1 = 249
trader 2 (bad trader)
Raws Uniq ClkT ClkG Out T
7 6 0 0 9
His ProdTG is 0.00
6 * (0.00 + 1) + 1 = 7
Any ideas about effectivity of this variant and how i can implement.
Thanks in advance.
who can help me to write a custom trade algorithm. The main idea is to boost big traders and maintain small ones.
I think about Uniq * (PordTG + constant1) + constant2. I will use constant1 for "boost" and constant2 for maintain.
For ex.
trader 1 (not bad trader)
Raws Uniq ClkT ClkG Out T
133 92 47 185 805
His ProdTG is 1.7
So i would like to send him 248 insted of 805.
92 * (1.7 + 1) + 1 = 249
trader 2 (bad trader)
Raws Uniq ClkT ClkG Out T
7 6 0 0 9
His ProdTG is 0.00
6 * (0.00 + 1) + 1 = 7
Any ideas about effectivity of this variant and how i can implement.
Thanks in advance.