texoro
texoro
texoro
Added topic ifractals
 Hello to everyone, I am trying  to do a function to "intercept" the candle where it "appears" the "fractals" of "the function “ifractals" this is the code: for ( int  j= 0 ; j< Bars ; j++)     {
texoro
Added topic symbol of the beginning
Hello everyone I stated this symbol:       SetIndexBuffer ( 6 , InIndicator);    SetIndexArrow ( 6 , 83 );    SetIndexLabel ( 6 , "InIndicator" );   how do I draw it on the chart just insert the indicator
texoro
Added topic Double Max and Double Min:
 Hello everyone, I have the following function that gives me a allert when when you come to form the double up and double min:   void DoppioMinMax( int DistanzaFrecciaRib= 5 , int DistanzaFrecciaRia= 5 , ) {    int dpmindmax = 0 ;
texoro
Added topic closing candle above or below the moving average
bool NuovaCandela()   {    static datetime TempoUltimaCandela;    datetime TempoCandelaAttuale=Time[ 0 ];    if (TempoCandelaAttuale!=TempoUltimaCandela)      {
texoro
Added topic Recognizing a trend
What is migilior method :    1 ) Recognizing a long-term trend ( 1 hr and up) 2 ) Recognize a short-term trend ( 1 hr in down)
texoro
Added topic Recognizer candles
I have to rate A Function That riconsce the following pattern of candles who can give me a hand ?     and         tanks     
texoro
Added topic ex4 to maturity
How do you make the " ex4 " used for a predetermined time " X "
texoro
Added topic array out of range
The code excerpt from where the error is this      for (i = Bars; i >= 0; i--) {       TrendUp[i] = EMPTY_VALUE ;       TrendDown[i] = EMPTY_VALUE;       atr = iATR(NULL, 0, 10, i);
texoro
Added topic Help little program with stochastic
Hello everyone, I'll post a little program that I've done: The program should report me 2 of the stochastic crosses that occur sussessivamente inclusion of ' AE in the graph instead of as soon as I insert the graphic print " DrawAllert ( " cross 2
texoro
Added topic Alert Error "array out of range"
#property copyright "" #property link       "" #property indicator_buffers 2 #property indicator_color1 DarkGreen #property indicator_width1 3 #property indicator_color2 Green #property indicator_width2 3 extern string
texoro
Added topic Explanation of a Ae
     #property indicator_chart_window      #property indicator_buffers 2      #property indicator_color1 DarkGreen      #property indicator_width1 3
texoro
Added topic Help function with stochastic
     void DrawAllert( string text, color C=LightGray)     {      ObjectCreate ( "rect" , OBJ_LABEL , 0 , 0 , 0 , 0 , 0 );     ObjectSet ( "rect" , OBJPROP_XDISTANCE , 10
texoro
Added topic Alert Error "array out of range"
[10:50:01] Teodoro Nato: for ( int i= 0 ; i< 5 ; i++) { for ( int i= 0 ; i< 5 ; i++) { //i create the array in the values of the last 5 candle of the average at 20 periods MovingAvarage20[i]= iMA ( NULL , 0 , PeriodMovingAvarage20, 0 , MODE_EMA
12