Search found 177 matches

by sbank
Thu Jan 18, 2024 1:45 pm
Forum: QScript
Topic: Qscript for Email Alert for Exhaustion Bars and 59 patterns
Replies: 3
Views: 8025

Re: Qscript for Email Alert for Exhaustion Bars and 59 patterns

Here's some simple code on one of the exhaustion bars types: #initialize variables if (barnum==barsback) { bs = 0; } #Exbars 1 exb1=ExBars1(6,30); if (exb1==1) { signal1=1; } if (exb1==-1) { signal1=-1; } # go long if ((signal = 1) and (bs <= 0)) { buy(1,close,"market","onebar"); SendEmail("email_ad...
by sbank
Wed Jan 17, 2024 2:21 pm
Forum: Software
Topic: Slow Stochastic and Predict
Replies: 2
Views: 7309

Re: Slow Stochastic and Predict

Stochastics(slow) is the name of an indicator . Here you would need to use the function instead. If you look at the QScript of the Stochastics Indicator, it has these parts: input:length(14),overbought(70),oversold(30),kcolor(red), dcolor(blue),zonecolor(green),thickness(1); plot1=slowk(length); plo...
by sbank
Wed Nov 29, 2023 4:47 pm
Forum: Off Topic
Topic: Great Year
Replies: 2
Views: 13124

Re: Great Year

FWIW, this is what ChatGPTs answer was. (Doesn't really help you, but I guess it shows why there is no one correct answer.) The term "Great Year" typically refers to a concept related to astronomy and astrology, representing the time taken for the sun to complete a full cycle through the twelve cons...
by sbank
Wed Nov 29, 2023 2:45 pm
Forum: QScript
Topic: Accessing drawing components via QScript
Replies: 2
Views: 12542

Re: Accessing drawing components via QScript

Thanks Kenn! Yeah, I was thinking of going this approach. So you kinda confirmed my thoughts. :)
by sbank
Tue Nov 28, 2023 2:33 pm
Forum: QScript
Topic: Accessing drawing components via QScript
Replies: 2
Views: 12542

Accessing drawing components via QScript

Is there a way for QScript together the value of manually drawn components on the screen? A simple example, if I manually create a trendline connecting two highpoint, then extend said line by a couple of bars, how can QScript get the values at these bars? Since I am not drawing the lines in QScript,...
by sbank
Mon Nov 06, 2023 5:31 pm
Forum: Mechanical Systems
Topic: The most robust system
Replies: 4
Views: 26821

Re: The most robust system

Earik, The Genetic USM variants are working well on Gold. (Here are the two USM ones from the Mechanical Trading book, plus a third genetic algo I created. The three signals are all just ANDed together. This also includes $30 commission and slippage per side.) Not bad as well for when you first rele...
by sbank
Wed Oct 25, 2023 12:36 pm
Forum: Markets
Topic: GEOS & Natal Forecast
Replies: 7
Views: 21782

Re: GEOS & Natal Forecast

FYI, There is a volume profile script in the QScript library:

http://www.wave59.com/library/scriptdetail.asp?id=200
2023-10-25_08-33-02.png
2023-10-25_08-33-02.png (43.98 KiB) Viewed 21641 times
by sbank
Thu Oct 19, 2023 1:09 pm
Forum: Software
Topic: How to get PINNACLE Data into W59
Replies: 2
Views: 9777

Re: How to get PINNACLE Data into W59

Can Pinnacle save data to ASCII text format? This is the list of supported data feeds: 2023-10-19_09-02-28.png When you click ASCII, you will get a screen to then add your symbols and files. 2023-10-19_09-04-34.png I have been using IQFeed now for 7 or so years (before that I used the integrated CQG...
by sbank
Wed Oct 18, 2023 5:25 pm
Forum: Tools and Techniques
Topic: Astronumerology Calculator
Replies: 6
Views: 20978

Re: Astronumerology Calculator

> Any pointers on how to get started with Algo methods and how to test them? Testing them is easy with W59's System Report. You need rudimentary coding skills as well. Some people have development backgrounds, and they can write really complicated QScripts. But you can also do well with very simple ...
by sbank
Wed Oct 18, 2023 4:36 pm
Forum: Tools and Techniques
Topic: Astronumerology Calculator
Replies: 6
Views: 20978

Re: Astronumerology Calculator

I have not done much with the AstroTrader content to be honest. 99% of my trading is algorithmic. Every time I try discretionary, I lose money. :) I really want to play with the GEOS stuff that is discussed lately. And I own a bunch of other discretionary stuff (Selene's, Pendulum Motion, etc). But ...