Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Find Last Fractal Function MQL4

double findFractal(int nbr, int mode, int timeframe)
{
   int i=3, n;
   for(n=0;n<=nbr;n++)
   {
      while(iFractals(Symbol(),timeframe,mode,i) == 0)
         i++;
      if(n<nbr)
         i++;
   }
   return(iFractals(Symbol(),timeframe,mode,i));
}
Comment

PREVIOUS NEXT
Code Example
Sql :: Search In the Data using ObjectName 
Sql :: SELECT multiple from database 
Sql :: ring PostgreSQL 
Sql :: postgres another version 
Sql :: mysql missin expression near on 
Sql :: Getting error while running 50 MB script on SQL Server 
Sql :: ring MySQL rollback updates to the database 
Sql :: SQL AS With Expression 
Sql :: dynamic pivot 
Sql :: oracle archivemode 
Sql :: subconjuntos da linguagem SQL 
Sql :: ERROR: column "hourly_visitors.hour" must appear in the GROUP BY clause or be used in an aggregate function 
Sql :: data table footer customize 
Sql :: odoo css not loaded 
Sql :: oracle timestamp +1h 
Sql :: alembic upgrade show sql 
Sql :: goto in SQL server in production 
Sql :: redshift alter table alter column set not null 
Sql :: compound operator in sql 
Sql :: import sheets doc into databricks 
Sql :: oracle create chain rule 
Sql :: Split Column with delimiter into multiple columns 
Sql :: sql group by and having 
Sql :: VYSTUPNI PARAMETR ULOZENE PROCEDURY SQL 
Sql :: sqlite mode default 
Sql :: sql create tablwe 
Sql :: select a row include list of array with join two table SQL 
Sql :: Which MySQL statement is used to delete data from a database 
Sql :: pass timestamp in sql quqey of sql server 
Sql :: sql server setup commands 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =