Complete Freewares To Protect Your PC

#21
hello everybody,
can any body here assist me regarding my pc prob.
my pc sometime automatically restarts and right now im using avast(free edition).can anybody tell me is it a virus problem or is it a defect in hardwares.

thanx
 
#23
any suggestions on freewares linked to block porn sites and also to spy PC will be appreciated
Hi
You can use Spyware Blaster to block spy sites.
Also, use Open DNS server, it is free and you can customize what you want to block. Open DNS automatically blocks fraudulent sites and sites which are related to phishing.

Also, you can manually edit your hosts file in your PC to block certain sites which you don't want to visit.
 

columbus

Well-Known Member
#25
Hi,
Try the new AVG 9.0 version, it has got many new features.
The fight between FREE vs PRICED antivirus software go
on forever.But Kapersky's AV is priced at Peanuts ,just
900/- for ONE year for 3 PCs.
 
#26
hello everybody,
can any body here assist me regarding my pc prob.
my pc sometime automatically restarts and right now im using avast(free edition).can anybody tell me is it a virus problem or is it a defect in hardwares.

thanx
May be your system is infected
Try Updating Your Avast Antivirus and then try a boot time scan
You may try Spyware Terminator for scanning :thumb:
BTW make another thread rather than asking in current thread :cool:
 
#27
please correct this afl.. it is smart trail stop afl...
_SECTION_BEGIN("smart trail stop");
SetTradeDelays (0,0,0,0);
SetOption("InitialEquity", 100000);
SetOption("AccountMargin", 10);
SetOption("CommissionMode", 1);
SetOption("CommissionAmount", 0.10); // .1% commission per entry / exit
SetOption("MaxOpenPositions", 12);
SetOption("AllowSameBarExit", True);
// FIXED FRACTIONAL POSITION SIZING
CapRisk = Param("CapitalRisk", 2, 1,5,0.5); // capital risk %
MaxCap = 10; // max capital % in one trade (10% capital = 2% stop)
StopPct = Param("StopPct", 20, 1,25,1)/100; // stop % - initial risk
FFRisk = Min(CapRisk/(StopPct*BuyPrice)*BuyPrice/10, MaxCap);
"FF risk = " +WriteVal(ffrisk, 1.2);
SetPositionSize(FFRisk * 10, spsPercentOfEquity);
// POS SCORE - BANG FOR BUCK ($10,000)
B4B = 10000/Ref(C,-1)*Ref(ATR(200),-1)/100;
"10k BFB = " +WriteVal(B4B, 1.2);
PositionScore = B4B;

// INDEX TREND FILTER - 2 x moving averages
SetForeign("$DJ"); // change to whatever index is of interest
IFa = Param("IF FMA", 30,0,100,5); IFb = Param("IF SMA", 100,0,300,5);
IFx = EMA(C,IFa);
IFy = MA(C,IFb);
IndexFilter = IFx > IFy;

//PlotForeign("XAO", "All Ords", colorBlack, styleLine);
//Plot(IndexFilter,"Index Filter", colorBlack, styleLine);
RestorePriceArrays();

// TREND FILTER - 2 x moving averages
j = Param("FMA", 30,0,50,5); k = Param("SMA", 100,0,100,5);
FMA = EMA(C,j); SMA = EMA(C,k); TF = FMA > SMA;
//Plot(FMA, "FMA", colorBlue, styleLine);
Plot(SMA, "SMA", colorOrange,styleLine);
// VOL FILTER - MONEY FLOW > $1 MILLION
VF = EMA(V*C,21) > 1000000;
Filter = VF; AddColumn(VF, "volFilter"); AddColumn(EMA(V*C,21), "V*C",
1.2); // leaves approx 225 from ASX 300

BDC1 = Param("#buydays", 20, 5,50,5);
BDC2 = Param("#buydays2", 70, 5,100,5);
Cond1 = H > Ref(HHV(H,BDC1),-1) + 0.01;
Cond2 = H > Ref(HHV(H,BDC2),-1) + 0.01;
Buy = Cond1 AND Cond2 AND IndexFilter AND VF AND TF;
BuyPrice = Max(O, Ref(HHV(H,BDC1),-1) + 0.01);

Sell = 0;

// REDUCE RISK - RAISE STOP X 2, RAISE TO BREAKEVEN, TIGHTEN AFTER 3 DOWN DAYS
MSD = Param("#DaysB4MoveStop1", 5, 0,50,1) -1; // needs -1 to calculate correctly
RSP = (100-Param("%raiseStop1By", 50, 0, 100, 5)) / 100;
MSD2 = Param("#DaysB4MoveStop2", 15, 0,50,1) -1;
RSP2 = (100-Param("%raiseStop2By", 50, 0, 100, 5)) / 100;
MSBE = Param("#DaysB4MoveStopBE", 10, 0,50,1) -1;
TSDM = 1 + Param("%raiseStop3DownDays", 25, 0,100,5) / 100 * StopPct;
WriteVal(tsdm);
IS = BuyPrice - (BuyPrice*StopPct);
NS = Ref(C,-1) - (Ref(C,-1)*StopPct); // initial stop
NS2 = Ref(C,-1) - (Ref(C,-1)*StopPct*RSP); // reduce risk
NS3 = Ref(C,-1) - (Ref(C,-1)*StopPct*RSP*RSP2); // reduce risk again

TS = 0; OpenPos = 0; j = 0; BES = Null; TSD = 0; LowDown = 0;
TSa = Null; Spa = Null; ja = Null; nsa = Null; ns2a = Null;
bpa = Null; besa = Null; ns3a = Null; TSDa = Null; Checka = Null;

for(i=1; i<BarCount; i++)
{
if(Buy AND OpenPos == 0 AND TS == 0) {
Buy = 1;
bpa = BuyPrice;
bes = BuyPrice * 1.005; // .5% to cover comissions, etc
besa = bes;
TS = IS;
OpenPos = 1;
j = 0;
TSD = L - TS;
TSDa = TSD;
}
else Buy = 0;
if(OpenPos == 1 AND TS > 0 AND L <= TS) {
Sell = 1;
SellPrice = Min(O, TS);
SPa = SellPrice;
TS = 0;
OpenPos = 0;
j = 0;
BES = 0;
TSD = 0;
TSDa = TSD;
LowDown = 0;
}
else Sell = 0;
// reduce risk after x days, first time
if(TS > 0 AND j <= MSD) {
TS = Max(TS, NS);
TSa = TS;
NSa = NS;
}
if(TS > 0 AND j > MSD) {
TS = Max(TS, NS2);
TSa = TS;
NS2a = NS2;
}
// reduce risk after x days, second time
if(TS > 0 AND j >= MSD2) {
TS = Max(TS, NS3);
TSa = TS;
NS3a = NS3;
}
// raise stop to BE after x days
if(OpenPos == 1) {
BES = Max(BES, BES[i-1]);
BESa = BES;
}
if(OpenPos == 1 AND j == MSBE) {
TS = Max(TS, BES);
TSa = TS;
BESa = BES;
}
// TSD getting smaller over last 3 days
if(TS > 0) {
TSD = L - TS;
TSDa = TSD;
if(TSD < TSD[i-1] AND TSD[i-1] < TSD[i-2] AND TSD[i-2] < TSD[i-3]) {

TS = Max(TS, TS * TSDM);
TSa = TS;
LowDown = 1;
Checka = LowDown;
}
}
j++; ja = j;
}

Plot(TSa, "Trail Stop", colorBlue, styleLine);
//Plot(bpa, "buyprice", colorGreen, styleLine);
//Plot(spa, "sellprice2", colorRed, styleLine);
//Plot(ja, "j", colorBlack, styleNoLine);
//Plot(NSa, "NS", colorBlack, styleLine);
//Plot(NS2a, "NS2", colorOrange, styleLine);
//Plot(NS3a, "NS3", colorBrown, styleLine);
//Plot(besa, "BES", colorBrightGreen, styleLine);
//Plot(TSDa, "TSD", colorRed, styleLine);
//Plot(Checka, "checkTSD", colorGreen, styleLine);


// GRAPH / INDICATOR PLOT
arrows = ParamToggle("Show Buy / Sell arrows?", "Yes please", 0);
if(arrows == 1) {
PlotShapes(Buy*shapeUpArrow,colorBrightGreen,0,Low);
PlotShapes(Sell*shapeDownArrow,colorRed,0,High);
}
bliss = ParamToggle("Show Buy / Sell Prices", "Oh yeah! ",0);
if(bliss == 1) {
PlotShapes( IIf(Buy, shapeSmallCircle, shapeNone),colorBrightGreen, 0,
BuyPrice, 0 );
PlotShapes( IIf( Sell, shapeSmallCircle, shapeNone),colorRed, 0
,SellPrice, 0 );
FirstVisibleBar = Status( "FirstVisibleBar" );
Lastvisiblebar = Status("LastVisibleBar");
for( b = Firstvisiblebar; b <= Lastvisiblebar AND b < BarCount; b++)
{
if( Buy ) PlotText("\n Buy\n
else if( Sell )
for( b = Firstvisiblebar; b <= Lastvisiblebar AND b < BarCount; b++)
{

else if( Sell )
PlotText( " \n Sell\n" + NumToStr(SellPrice,1.2),b,SellPrice,colorRed);

_SECTION_END();






thanks in advance....
 

sub2501

Active Member
#30
please correct this afl.. it is smart trail stop afl...
_SECTION_BEGIN("smart trail stop");
.......................................................
NumToStr(SellPrice,1.2),b,SellPrice,colorRed);

_SECTION_END();

thanks in advance....


its shows an error
Price :
{

elseif(Sell)
PlotText("\
...........

Error 31.
Syntax error,expecting ')'or','
use 'Edit Formula' to correct error"
_________________________
thanks.
 

Similar threads