Вход на сайт
Indikatoren ??? CMC
NEW 17.07.07 15:49
видел я на одном немецко форуме, как один коллега подвешал на СМС платформ индекатор тот каторый он хотел...
и дал ссылку на эти индекаторы, ну что откуда они берутся... а вот как прилепить его там, я без понятия...
может кто растолкует ??? как это делается...
вот эта ветка >>>http://www.metaquotes.net/techanalysis/indicators/awesome_oscillator
и дал ссылку на эти индекаторы, ну что откуда они берутся... а вот как прилепить его там, я без понятия...
может кто растолкует ??? как это делается...
вот эта ветка >>>http://www.metaquotes.net/techanalysis/indicators/awesome_oscillator
17.07.07 15:55
NEW 17.07.07 21:36
в ответ Dagi-Dag 17.07.07 17:17
Вить, похоже программировать надо. Вот почитай.
http://www.aktienboard.com/vb/showthread.php?t=94783
http://www.candletalk.de/thread.php?threadid=1273&sid=f816a59cbe0865d4505d84bc20...
http://www.aktienboard.com/vb/showthread.php?t=94783
http://www.candletalk.de/thread.php?threadid=1273&sid=f816a59cbe0865d4505d84bc20...
NEW 18.07.07 22:06
в ответ blackalex 17.07.07 21:36
Зарегистрировался я там, отправил ему сообщение или вернее прозьбу...
пока чел. молчтит...
Звонил уже два раза к Броккеру... и вс╦ без полезно...
говарю им, ведь вы такая огромная контора, а основной индекатор Volumen
у вас его нету... как так ??? сидит блин мычит тока и вс╦...
пока чел. молчтит...
Звонил уже два раза к Броккеру... и вс╦ без полезно...
говарю им, ведь вы такая огромная контора, а основной индекатор Volumen
у вас его нету... как так ??? сидит блин мычит тока и вс╦...
NEW 19.07.07 00:13
в ответ Dagi-Dag 18.07.07 22:06
NEW 28.07.07 18:13
Люди... ну что я делаю не так ???
уже и прогу туда вкотил, но всёравно пишет мне какуюто ошибку...
уже и прогу туда вкотил, но всёравно пишет мне какуюто ошибку...
NEW 28.07.07 18:45
в ответ Dagi-Dag 28.07.07 18:38
NEW 28.07.07 18:59
да я щсё кину сюда...
//+------------------------------------------------------------------+
//| Awesome.mq4 |
//| Copyright ╘ 2005, MetaQuotes Software Corp. |
//| http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright ╘ 2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"
//---- indicator settings
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 Black
#property indicator_color2 Green
#property indicator_color3 Red
//---- indicator buffers
double ExtBuffer0[];
double ExtBuffer1[];
double ExtBuffer2[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- drawing settings
SetIndexStyle(0,DRAW_NONE);
SetIndexStyle(1,DRAW_HISTOGRAM);
SetIndexStyle(2,DRAW_HISTOGRAM);
IndicatorDigits(Digits+1);
SetIndexDrawBegin(0,34);
SetIndexDrawBegin(1,34);
SetIndexDrawBegin(2,34);
//---- 3 indicator buffers mapping
SetIndexBuffer(0,ExtBuffer0);
SetIndexBuffer(1,ExtBuffer1);
SetIndexBuffer(2,ExtBuffer2);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("AO");
SetIndexLabel(1,NULL);
SetIndexLabel(2,NULL);
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Awesome Oscillator |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
double prev,current;
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//---- macd
for(int i=0; i ExtBuffer0=iMA(NULL,0,5,0,MODE_SMA,PRICE_MEDIAN,i)-iMA(NULL,0,34,0,MODE_SMA,PRICE_MEDIAN,i);
//---- dispatch values between 2 buffers
bool up=true;
for(i=limit-1; i>=0; i--)
{
current=ExtBuffer0;
prev=ExtBuffer0[i+1];
if(current>prev) up=true;
if(current if(!up)
{
ExtBuffer2=current;
ExtBuffer1=0.0;
}
else
{
ExtBuffer1=current;
ExtBuffer2=0.0;
}
}
//---- done
return(0);
}
//+------------------------------------------------------------------+
//| Awesome.mq4 |
//| Copyright ╘ 2005, MetaQuotes Software Corp. |
//| http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright ╘ 2005, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"
//---- indicator settings
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 Black
#property indicator_color2 Green
#property indicator_color3 Red
//---- indicator buffers
double ExtBuffer0[];
double ExtBuffer1[];
double ExtBuffer2[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- drawing settings
SetIndexStyle(0,DRAW_NONE);
SetIndexStyle(1,DRAW_HISTOGRAM);
SetIndexStyle(2,DRAW_HISTOGRAM);
IndicatorDigits(Digits+1);
SetIndexDrawBegin(0,34);
SetIndexDrawBegin(1,34);
SetIndexDrawBegin(2,34);
//---- 3 indicator buffers mapping
SetIndexBuffer(0,ExtBuffer0);
SetIndexBuffer(1,ExtBuffer1);
SetIndexBuffer(2,ExtBuffer2);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("AO");
SetIndexLabel(1,NULL);
SetIndexLabel(2,NULL);
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| Awesome Oscillator |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
double prev,current;
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//---- macd
for(int i=0; i
//---- dispatch values between 2 buffers
bool up=true;
for(i=limit-1; i>=0; i--)
{
current=ExtBuffer0;
prev=ExtBuffer0[i+1];
if(current>prev) up=true;
if(current
{
ExtBuffer2=current;
ExtBuffer1=0.0;
}
else
{
ExtBuffer1=current;
ExtBuffer2=0.0;
}
}
//---- done
return(0);
}