Mark
The audio alerts thread you started was inadvertently deleted. Here is a repost of my reply to you with the instructions on how to modify alert_at_X.efs which is posted here
Open the efs with the Editor and in line 73 replace
if (close() >= PriceLevel) {
with
if (high(0) >= PriceLevel && high(-1) < PriceLevel) {
and in line 80 replace
if (close() <= PriceLevel) {
with
if (low(0) <= PriceLevel && low(-1) > PriceLevel) {
At that point you can run two instances of the efs one set for the High alert and the other for the Low alert
Alex
The audio alerts thread you started was inadvertently deleted. Here is a repost of my reply to you with the instructions on how to modify alert_at_X.efs which is posted here
Open the efs with the Editor and in line 73 replace
if (close() >= PriceLevel) {
with
if (high(0) >= PriceLevel && high(-1) < PriceLevel) {
and in line 80 replace
if (close() <= PriceLevel) {
with
if (low(0) <= PriceLevel && low(-1) > PriceLevel) {
At that point you can run two instances of the efs one set for the High alert and the other for the Low alert
Alex
Comment