|
From: Márcio V. d. S. <mv...@us...> - 2007-11-01 15:14:37
|
Update of /cvsroot/tail/TailS/Data/Scripts In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv26236/Data/Scripts Modified Files: Default_RSI_NotSoFast.rb Default_EMA.rb EMAStrategies3.rb Default_ParabolicSAR_NotSoFast.rb Default_SMA_NotSoFast.rb Default_RSI.rb Default_SMA.rb NotSoFastStochasticStrategy.rb Default_EMA_NotSoFast.rb Default_WMA.rb Default_WMA_NotSoFast.rb Default_ParabolicSAR.rb StochasticStrategy.rb Log Message: Index: Default_RSI.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_RSI.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_RSI.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_RSI.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(pipeEnter(constantIndicator(70), constantIndicator(30), rsi(numero))) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(pipeEnter(constantIndicator(70), constantIndicator(30), rsi(numero))) } Index: Default_RSI_NotSoFast.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_RSI_NotSoFast.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_RSI_NotSoFast.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_RSI_NotSoFast.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(notSoFast(pipeEnter(constantIndicator(70), constantIndicator(30), rsi(numero)), 3)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(notSoFast(pipeEnter(constantIndicator(70), constantIndicator(30), rsi(numero)), 3)) } Index: Default_WMA_NotSoFast.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_WMA_NotSoFast.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_WMA_NotSoFast.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_WMA_NotSoFast.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(notSoFast(cross(wma(numero), close), 3)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(notSoFast(cross(wma(numero), close), 3)) } Index: StochasticStrategy.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/StochasticStrategy.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StochasticStrategy.rb 31 Oct 2007 21:18:09 -0000 1.1 --- StochasticStrategy.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(pipeEnter(constantIndicator(80), constantIndicator(20), stochastic(numero))) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(pipeEnter(constantIndicator(80), constantIndicator(20), stochastic(numero))) } Index: Default_ParabolicSAR.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_ParabolicSAR.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_ParabolicSAR.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_ParabolicSAR.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(cross( parabolicSAR(numero), close)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(cross( parabolicSAR(numero), close)) } Index: Default_EMA_NotSoFast.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_EMA_NotSoFast.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_EMA_NotSoFast.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_EMA_NotSoFast.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(notSoFast(cross(ema(numero), close), 3)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(notSoFast(cross(ema(numero), close), 3)) } Index: Default_WMA.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_WMA.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_WMA.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_WMA.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(cross(wma(numero), close)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(cross(wma(numero), close)) } Index: NotSoFastStochasticStrategy.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/NotSoFastStochasticStrategy.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NotSoFastStochasticStrategy.rb 31 Oct 2007 21:18:09 -0000 1.1 --- NotSoFastStochasticStrategy.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(notSoFast(pipeEnter(constantIndicator(80), constantIndicator(20), stochastic(numero)), 3)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(notSoFast(pipeEnter(constantIndicator(80), constantIndicator(20), stochastic(numero)), 3)) } Index: EMAStrategies3.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/EMAStrategies3.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EMAStrategies3.rb 31 Oct 2007 21:34:44 -0000 1.1 --- EMAStrategies3.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! "Gera 50 strategies" ! (1..50).collect{|numero| strategies.add(cross( close, ema(numero))) } --- 1,4 ---- ! #Gera 50 strategies ! (1..50).each{|numero| strategies.add(cross( close, ema(numero))) } Index: Default_SMA_NotSoFast.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_SMA_NotSoFast.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_SMA_NotSoFast.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_SMA_NotSoFast.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(notSoFast(cross(sma(numero), close), 3)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(notSoFast(cross(sma(numero), close), 3)) } Index: Default_ParabolicSAR_NotSoFast.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_ParabolicSAR_NotSoFast.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_ParabolicSAR_NotSoFast.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_ParabolicSAR_NotSoFast.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(notSoFast(cross( parabolicSAR(numero), close), 3)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(notSoFast(cross( parabolicSAR(numero), close), 3)) } Index: Default_EMA.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_EMA.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_EMA.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_EMA.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(cross(ema(numero), close)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(cross(ema(numero), close)) } *************** *** 8,9 **** --- 8,10 ---- + Index: Default_SMA.rb =================================================================== RCS file: /cvsroot/tail/TailS/Data/Scripts/Default_SMA.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Default_SMA.rb 31 Oct 2007 23:40:00 -0000 1.1 --- Default_SMA.rb 1 Nov 2007 15:14:34 -0000 1.2 *************** *** 1,4 **** ! (4..60).collect{|numero| ! $strategies.add(cross(sma(numero), close)) } --- 1,4 ---- ! (4..60).each{|numero| ! strategies.add(cross(sma(numero), close)) } |