Search found 18 matches

by elitetrader
13 Dec 2019
Forum: MultiCharts
Topic: Resolution link Scanner > Charts
Replies: 3
Views: 1784

Re: Resolution link Scanner > Charts

Hello Ben,

Hope you are doing well. I this thread and i like how what you have done with the scanner cell. if you dont mind me asking how did you do that? I would appreciate if you could shed some insight .

Best Regards,
by elitetrader
17 Feb 2018
Forum: MultiCharts
Topic: Multicharts crashed
Replies: 3
Views: 1303

Multicharts crashed

for some reason for the past 2 months when every there is volatility in the market Multicharts crashed and my indicators and data freezez for some time how do i fix this problem. The previous NFP caused Multicharts to crash for 1 hour
by elitetrader
03 Mar 2017
Forum: MultiCharts
Topic: Renko bars signal
Replies: 3
Views: 1467

Re: Renko bars signal

I notice that Strategy Properties it says Maximum number of bars study will reference meanwhile in Format instrument "data Range" has Days back could this be the reason why running a robot on multiple data series isn't working correctly ?
by elitetrader
03 Mar 2017
Forum: MultiCharts
Topic: Renko bars signal
Replies: 3
Views: 1467

Re: Renko bars signal

i had loaded different bars on the chart that didnt match the signal so i fixed that
by elitetrader
03 Mar 2017
Forum: MultiCharts
Topic: Renko bars signal
Replies: 3
Views: 1467

Renko bars signal

for some reason when i run this signal on Renko bars (box size 0.0005 , Resolution 50 ticks) it doesn't work : does anyone know whats actually going on here ive attached a picture showing the signal working on HA bars but not on Renko inputs: Series( Close ), FastMA( 7 ), SlowMA( 3 ) ; variables: va...
by elitetrader
05 Sep 2016
Forum: MultiCharts
Topic: signal reading price and setting price as sell or buy limit
Replies: 6
Views: 1771

Re: signal reading price and setting price as sell or buy li

inputs: Length( 2 ), BarsPlus( -3 ) ; variables: var0( 0 ) ; var0 = TimeSeriesForecast( Length, BarsPlus ) ; if swingindex crosses above 0 then buy next bar at market; if swingindex crosses below 0 then sellshort next bar at market; setstopshare; setprofittarget ( var0); // yes this is wrong but th...
by elitetrader
05 Sep 2016
Forum: MultiCharts
Topic: signal reading price and setting price as sell or buy limit
Replies: 6
Views: 1771

Re: signal reading price and setting price as sell or buy li

once the swingindex crosses up/down and a trade is placed i want to place a profit target at the price the time series forecast is indicating.
by elitetrader
05 Sep 2016
Forum: MultiCharts
Topic: signal reading price and setting price as sell or buy limit
Replies: 6
Views: 1771

Re: signal reading price and setting price as sell or buy li

inputs: Length( 9 ), BarsPlus( 7 ) ; variables: var0( 0 ) ; var0 = TimeSeriesForecast( Length, BarsPlus ) ; Plot1( var0, "TSF" ) ; condition1 = Close > var0 and var0 > var0[1] and var0[1] <= var0[2] ; if condition1 then Alert( "Indicator turning up" ) else begin condition1 = Close < var0 and var0 <...
by elitetrader
05 Sep 2016
Forum: MultiCharts
Topic: signal reading price and setting price as sell or buy limit
Replies: 6
Views: 1771

signal reading price and setting price as sell or buy limit

if SwingIndex >0 then buy next bar at market; if SwingIndex <0 then sellshort next bar at market; now i want to add time series forecast ( using time series forecast as a signal) to place a profit target at the price it forecast when the swingindex signal places a trade how do i go on getting this
by elitetrader
08 Jul 2016
Forum: MultiCharts
Topic: Breakeven modifivation
Replies: 8
Views: 2553

Breakeven modifivation 2

[IntrabarOrderGeneration = false] inputs: FloorAmt( 1 ), AmounT(.0002), PositionBasis( false ) ; variables: var0(0),var1(0); var0 =marketposition; var1= setbreakeven; if PositionBasis then SetStopPosition else SetStopShare ; if var0 = -1 then var1= entryprice + 4 Ticks ; i am getting the following ...
by elitetrader
08 Jul 2016
Forum: MultiCharts
Topic: Breakeven modifivation
Replies: 8
Views: 2553

Re: Breakeven modifivation

[IntrabarOrderGeneration = false] inputs: FloorAmt( 1 ), AmounT(.0002), PositionBasis( false ) ; variables: var0(0),var1(0); var0 =marketposition; var1= setbreakeven; if PositionBasis then SetStopPosition else SetStopShare ; if var0 = -1 then var1= entryprice + 4 Ticks ; i set breakeven to equal th...
by elitetrader
08 Jul 2016
Forum: MultiCharts
Topic: Breakeven modifivation
Replies: 8
Views: 2553

Re: Breakeven modifivation

Code: Select all

[IntrabarOrderGeneration = false]
inputs: PositionBasis( false ), FloorAmt( 50 );

if PositionBasis then
SetStopPosition
else
SetStopShare ;

setbreakeven + 4 points ( FloorAmt ) ;
by elitetrader
08 Jul 2016
Forum: MultiCharts
Topic: Breakeven modifivation
Replies: 8
Views: 2553

Breakeven modifivation

[IntrabarOrderGeneration = false]
inputs: PositionBasis( false ), FloorAmt( 50 );

if PositionBasis then
SetStopPosition
else
SetStopShare ;

setbreakeven + 4 points ( FloorAmt ) ;


Trying to get this breakeven to set stop at 2 pips higher than my entry once triggered
by elitetrader
07 Jun 2016
Forum: MultiCharts
Topic: Signal Generates order Direction biased
Replies: 4
Views: 2068

Re: Signal Generates order Direction biased

when i run this code and the signal is generating orders the smaller data robot buys and sells rather than buying or selling based on direction of data 2 srobot
by elitetrader
06 Jun 2016
Forum: MultiCharts
Topic: Signal Time de/activator [SOLVED]
Replies: 4
Views: 2111

Re: Signal Time de/activator [SOLVED]

if time >= start.time
and time <= end.time then
BEGIN
if var0 crosses above botBand then buy next bar at market;
if var0 crosses below topBand then sellshort next bar at market;
END;

how do i get it to close the trade when time expires?
by elitetrader
06 Jun 2016
Forum: MultiCharts
Topic: Signal Time de/activator [SOLVED]
Replies: 4
Views: 2111

Signal Time de/activator [SOLVED]

How do i write a code so my signal can function between set time periods of the day for example i want my signal to function between 8 am and 3 pm and to close the trade its in at 30 pm and stop trading until the next day at 8am again.

Go to advanced search