Search found 32 matches

by bsegura
Tue Oct 05, 2021 4:34 pm
Forum: EdgeRater Scripting
Topic: henry1224's TASC Pos Neg Indicator with Extras
Replies: 0
Views: 38538

henry1224's TASC Pos Neg Indicator with Extras

With respect to henry1224, I added a few extra features to his uploaded Indicator. I hope he finds the additions useful. 1. I added a Hull 55 Period Moving Average 2. I added the ClimaxUP (Green) and ClimaxDown (red) elements from the Better Volume Indicator 3. I have then highest close and lowest c...
by bsegura
Sat Oct 02, 2021 12:46 pm
Forum: EdgeRater Scripting
Topic: Super Trend-Type of Indicator for EdgeRater
Replies: 0
Views: 15019

Super Trend-Type of Indicator for EdgeRater

Everyone: If you can, please try the following script lines. It is not a Super Trend Indicator but very similar in function. It is ultra simple by using a RSI as its decision maker. It can also be useful as part of a scan. If you do get a chance to try this out, please give me some feed back on this...
by bsegura
Sun Sep 26, 2021 9:01 am
Forum: EdgeRater Scripting
Topic: Does anyone have the Super Trend Indicator in EdgeRater??
Replies: 0
Views: 15224

Does anyone have the Super Trend Indicator in EdgeRater??

Asking if anyone has the Super Trend Indicator for Edge Rater. If so please post it.

Thanks
Brian
by bsegura
Fri Sep 24, 2021 9:47 am
Forum: EdgeRater Scripting
Topic: Bette// Better Volume Indicator II - with turtle strategy range := abs(high - low); x1 := close>r Volume Indicator II
Replies: 0
Views: 15625

Bette// Better Volume Indicator II - with turtle strategy range := abs(high - low); x1 := close>r Volume Indicator II

Below is a combination of the Better Volume Indicator (signals flipped on 55 period Hull moving average) with the turtle strategy of 10 periods (closer to center) and 20 periods farther from center. I use this with the upper Strategy Plateau and an upper 55 period hull moving average // Better Volum...
by bsegura
Fri Sep 24, 2021 9:41 am
Forum: EdgeRater Scripting
Topic: Strategy Plateau
Replies: 0
Views: 14699

Strategy Plateau

Below is a Strategy Plateau that is loosely based on the Turtle Strategy for 20 periods range := abs(high - low); x1 := close>open & range != 0; x2 := (range/(2*Range+Open-Close)) * V; x3 := close<open & range !=0; x4 := ((range+close-open)/(2*Range+close-open)) * V; x5 := close==open; x6 :=...
by bsegura
Thu Sep 23, 2021 10:28 am
Forum: EdgeRater Scripting
Topic: Better Volume Indicator
Replies: 0
Views: 14528

Better Volume Indicator

I found this "Better Volume Indicator" in a different scripting language and translated it for EdgeRater. I find this useful - info about the color of the volume section is available on youtube and the internet. Hope this helps someone. // Better Volume Indicator range := abs(high - low); ...
by bsegura
Tue Sep 07, 2021 8:13 am
Forum: Forum
Topic: Intraday data
Replies: 0
Views: 19133

Intraday data

Hello

Any Idea when the intraday provider "The Financial Modeling Prep" will be available for use ??
Thanks
-Brian
by bsegura
Sat Aug 28, 2021 9:43 am
Forum: Trade Simulation Forum
Topic: Why do simulation results change daily
Replies: 0
Views: 37314

Why do simulation results change daily

Hello: I noticed that when I run a simulation yesterday I get a certain number of results, but when I run a simulation today - it changes the number of yesterdays results. I would think that yesterdays results would be fixed so that there will always be that number of results on that day regardless ...
by bsegura
Fri Aug 06, 2021 10:58 am
Forum: EdgeRater Scripting
Topic: Need help with a scripting syntax
Replies: 4
Views: 13879

Re: Need help with a scripting syntax

I tried the command (HHV(C, N) == C) but it is an event.

I was trying to have a 200 period line that is at the height of the highest close within the last 200 bars

Please let me know if anyone has any good ideas on this...
by bsegura
Fri Aug 06, 2021 10:47 am
Forum: EdgeRater Scripting
Topic: Getting close information on two different stocks
Replies: 0
Views: 14814

Getting close information on two different stocks

Hello:

Is it possible to get the close from several different stocks within one indicator

average_of_two := ((HAL stock price) + (XOM stock price)) / 2;