fxcm 技術指標可以自動生成大部分**
主要包括 parameters 和 streams block兩部分
indicator:name("rsb");
indicator:description("");
indicator:requiredsource(core.tick);
indicator:type(core.indicator);
indicaotor.parameters 根據其型別包括5個引數unique identifier, displayable name, description, type, default
其中 type 有很多選項(integer, double, boolean, color, line style, string, date, date/time, file, sound file, email, price, bid/ask, allow trade, account, )
軟體會根據你的type型別加方法, 比如addinteger, addcolor,
每個stream包括兩個變數 unique, type
addstream()
設定好以後,系統會自動生成兩個變數 first, source
source = instance.source;
first = source:first();
其他方法:
addgroup("calculation")
addgroup("style")
setflag()
關於core
core handles synchronization, 在update()之前,coreextends/reducesindicator output usingextentparameter
core.crosses(stream, 0, p)
core.sum(stream,
用lua給Asterisk寫撥號方案
環境 作業系統 centos 6.0 asterisk版本 1.8.7.1 lua版本 5.1.4 步驟 1 安裝lua開發包 yum install lua devel 2 確認已經選擇pbx lua模組 configure make menuselect 確認 pbx modules pbx l...
用REALbasic語言寫網頁程式!
原載本人個人主頁 好久沒更新了,本以為joseph j.strout大哥又要宣布創業失敗呢,沒想到竟然推出了個好東西!yuma產品對實際上是乙個伺服器程式,提供對相當一部分realbasic的語言的支援,並允許直接訪問realbasic框架包中的許多功能 不是rb外掛程式sdk中的膠水 動態訪問rb...
用C語言寫PHP擴充套件
1 預定義 在home目錄,也可以其他任意目錄,寫乙個檔案,例如caleng module.def 內容是你希望定義的函式名以及引數 int a int x,int y string b string str,int n 2 到php原始碼目錄的ext目錄 cd usr local php 5.4....