Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sıcaklık algoritmasında SHORT sinyalleri için 1d alt yordamı #562

Open
boratuncer opened this issue Apr 19, 2019 · 1 comment
Open
Assignees
Milestone

Comments

@boratuncer
Copy link
Owner

boratuncer commented Apr 19, 2019

Hacim < 3000 sırasında gelen SHORT sinyalleri için 6.0 < sıcaklık < 8.0 değerleri için bir algoritma geliştirmemiz gerekiyor.

Bu koşulları sağlayan günler ve sıcaklık değerleri aşağıdaki gibidir.

Tarih Sinyal Algo Sıra Hacim Sıcaklık
24.07.2015 TP (#326) 123 -744 6,049
23.03.2016 TP (#326) 219 -1357 6,196
24.03.2016 AL (#338) 126 -831 6,595
24.05.2016 AL (#338) 218 -1437 6,592
10.06.2016 AL (#338) 134 -808 6,03
24.08.2016 TP (#326) 300 -1819 6,063
9.09.2016 TP (#527) 303 -2139 7,059
5.10.2016 SL (#339) 300 -1934 6,447
29.11.2016 TP (#326) 144 -942 6,542
9.03.2017 TP (#326) 93 -711 7,645
17.05.2017 SL (#339) 124 -814 6,565
11.08.2017 TP (#326) 182 -1326 7,286
24.11.2017 SL (#339) 102 -727 7,127
23.05.2018 AL (#338) 125 -796 6,368
@boratuncer boratuncer added this to the V0.7.3 milestone Apr 19, 2019
@boratuncer boratuncer self-assigned this Apr 19, 2019
@boratuncer
Copy link
Owner Author

Merhabalar,

Aşağıdaki algoritma ile 14 gün (7 gün arızalı, 7 gün normal) için +2.075 puan kazandırıyor. Arızalı olan 7 günün 4 tanesini düzeltiyor.

#562.xlsx

Kod çok belirli sınırlar içinde hareket ediyor, çok içime sinmedi, aşağıdaki soruların yanıtı yok.

  • neden sadece -900'den öncekiler için çalışıyor ?
  • neden -900 seçildi, neden -1000 değil ?
  • neden üst sınır 7.2, neden 7.4 veya 7.6 değil ?
if ((measure > 6.0) && (measure < 8.0))
{
    if ((signalDataList[i][sCount].volume > -900) &&
        (measure > 6.2) && (measure < 7.2))
    {
        algo = algos.algo_0147;
        ret = alarms.buy;
    }
}

İyi çalışmalar,
Bora

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant